PowerTools InputMan for ASP.NET 8.0J
ScrollBars プロパティ (ListBox)
使用例 

リストボックスに表示するスクロールバーの種類を取得または設定します。
構文
Public Property ScrollBars As ScrollBars
public ScrollBars ScrollBars {get; set;}

プロパティ値

既定値:GrapeCity.Web.Input.Core.ScrollBars.Both
解説
スクロールバーを常に表示させるか、内容がリストボックスの表示領域を超える場合にのみ表示させるかは、ScrollBarModeプロパティで設定します。
使用例
次のサンプルコードは、状況に応じて自動的に表示される水平スクロールバーを設定する方法を示します。
Imports GrapeCity.Web.Input.Core

GcComboBox1.ListBox.ScrollBarMode = ScrollBarMode.Automatic
GcComboBox1.ListBox.ScrollBars = ScrollBars.Horizontal
using GrapeCity.Web.Input.Core;

GcComboBox1.ListBox.ScrollBarMode = ScrollBarMode.Automatic;
GcComboBox1.ListBox.ScrollBars = ScrollBars.Horizontal;
参照

ListBox クラス
ListBox メンバ

 

 


© 2005-2015 GrapeCity inc. All rights reserved.