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

コンボコントロールのリストボックスを構成するGrapeCity.Web.Input.Core.ListBox.ListBoxオブジェクトを参照します。
構文
Public Property ListBox As ListBox
public ListBox ListBox {get; set;}
解説
コンボコントロールのリストボックスのヘッダー、カラム、リストのスタイルなどの詳細な設定はListBoxプロパティが参照するGrapeCity.Web.Input.Core.ListBox.ListBoxクラスを使用します。
使用例
次のサンプルコードでは、コンボコントロールのリストボックスにカラムを追加し、ヘッダーを表示する例を示します。
Imports GrapeCity.Web.Input.Core.ListBox

' リストボックスにカラムを3つ追加します。
GcComboBox1.ListBox.Columns.Add(New ListColumn("氏名"))
GcComboBox1.ListBox.Columns.Add(New ListColumn("住所"))
GcComboBox1.ListBox.Columns.Add(New ListColumn("電話番号"))

' リストボックスのヘッダを表示します。
GcComboBox1.ListBox.ListHeaderPane.Visible = True
using GrapeCity.Web.Input.Core.ListBox;

// リストボックスにカラムを3つ追加します。
GcComboBox1.ListBox.Columns.Add(New ListColumn("氏名"));
GcComboBox1.ListBox.Columns.Add(New ListColumn("住所"));
GcComboBox1.ListBox.Columns.Add(New ListColumn("電話番号"));

// リストボックスのヘッダを表示します。
GcComboBox1.ListBox.ListHeaderPane.Visible = true;
参照

GcComboBox クラス
GcComboBox メンバ

 

 


© 2005-2015 GrapeCity inc. All rights reserved.