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

ステータスバーに表示するカラムのインデックスを取得または設定します。
構文
Public Property DescriptionSubItemIndex As Integer
public int DescriptionSubItemIndex {get; set;}

プロパティ値

既定値:0
例外
例外解説
System.ArgumentOutOfRangeException -1未満の値が設定されています。
解説
DescriptionSubItemIndexプロパティを使用するとステータスバーには、選択した項目のサブ項目の内容を表示できます。
使用例
次のサンプルコードでは、DescriptionSubItemIndexプロパティの使用方法を示します。
Imports GrapeCity.Web.Input.IMList

' ステータスバーを表示します。
GcListBox1.StatusBar = True

' コントロールに項目を追加します。
GcListBox1.Items.Add(New ListItem(New SubItem("AAA"), New SubItem("aaa"), New SubItem("あああ")))
GcListBox1.Items.Add(New ListItem(New SubItem("BBB"), New SubItem("bbb"), New SubItem("いいい")))
GcListBox1.Items.Add(New ListItem(New SubItem("CCC"), New SubItem("ddd"), New SubItem("ううう")))

' ステータスバーに表示する文字列のカラムのインデックスを設定します。
GcListBox1.DescriptionSubItemIndex = 2
using GrapeCity.Web.Input.IMList;

// ステータスバーを表示します。
GcListBox1.StatusBar = true;

// コントロールに項目を追加します。
GcListBox1.Items.Add(new ListItem(new SubItem("AAA"), new SubItem("aaa"), new SubItem("あああ")));
GcListBox1.Items.Add(new ListItem(new SubItem("BBB"), new SubItem("bbb"), new SubItem("いいい")));
GcListBox1.Items.Add(new ListItem(new SubItem("CCC"), new SubItem("ddd"), new SubItem("ううう")));

// ステータスバーに表示する文字列のカラムのインデックスを設定します。
GcListBox1.DescriptionSubItemIndex = 2;
参照

GcListBox クラス
GcListBox メンバ

 

 


© 2005-2015 GrapeCity inc. All rights reserved.