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

コントロールに含まれている項目のコレクションを表すオブジェクトを取得します。
構文
Public ReadOnly Property Items As ListItemCollection
public ListItemCollection Items {get;}

プロパティ値

既定値:Nothing
解説
Itemsプロパティは、リストボックス内に表示する項目(ListItemオブジェクト)を保持するListItemCollectionコレクションへの参照を返します。

ListItemCollectionコレクション内の各要素を参照または操作するには、そのオブジェクト固有のインデックスを使います。インデックスは追加したオブジェクトのコレクション内での位置を示す整数値です。
使用例
次のサンプルコードでは、リストコントロールに項目を追加する方法を示します。
Imports GrapeCity.Web.Input.IMList
Imports GrapeCity.Web.Input.Core.ListBox

' コントロールにカラムを3つ追加します。
GcListBox1.Columns.Add(New ListColumn())
GcListBox1.Columns.Add(New ListColumn())
GcListBox1.Columns.Add(New ListColumn())

' コントロールに項目を追加します。
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.Items.Add(New ListItem(New SubItem("DDD"), New SubItem("ccc"), New SubItem("えええ")))
using GrapeCity.Web.Input.IMList;
using GrapeCity.Web.Input.Core.ListBox;

// コントロールにカラムを3つ追加します。
GcListBox1.Columns.Add(new ListColumn());
GcListBox1.Columns.Add(new ListColumn());
GcListBox1.Columns.Add(new ListColumn());

// コントロールに項目を追加します。
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.Items.Add(New ListItem(new SubItem("DDD"), new SubItem("ccc"), new SubItem("えええ")));
参照

GcListBox クラス
GcListBox メンバ

 

 


© 2005-2015 GrapeCity inc. All rights reserved.