PowerTools InputMan for ASP.NET 8.0J
ListColumn クラス
メンバ  使用例 

ListColumnクラスは、コンボコントロールのリストボックスおよびリストコントロールのカラムを設定します。
構文
使用例
次のサンプルコードでは、コンボコントロールのドロップダウンリストで、カラムヘッダを設定する例を示します。
Imports GrapeCity.Web.Input.Core
Imports GrapeCity.Web.Input.Core.ListBox

' カラムのスタイルを設定します。
Dim lc1 As New ListColumn
lc1.AutoWidth = True
lc1.DataDisplayType = DataDisplayType.Text
lc1.Header.Clickable = True
lc1.Header.Text = "カラム1"
lc1.SortOrder = SortOrder.Ascending
lc1.Visible = True

' リストボックスにヘッダを表示し、カラムを追加します。
GcComboBox1.ListBox.HeaderPane.Visible = True
GcComboBox1.ListBox.Columns.Add(lc1)
using GrapeCity.Web.Input.Core;
using GrapeCity.Web.Input.Core.ListBox;

' カラムのスタイルを設定します。
ListColumn lc1 = new ListColumn();
lc1.AutoWidth = true;
lc1.DataDisplayType = DataDisplayType.Text;
lc1.Header.Clickable = true;
lc1.Header.Text = "カラム1";
lc1.SortOrder = SortOrder.Ascending;
lc1.Visible = true;

' リストボックスにヘッダを表示し、カラムを追加します。
GcComboBox1.ListBox.HeaderPane.Visible = true;
GcComboBox1.ListBox.Columns.Add(lc1);
継承階層

System.Object
   GrapeCity.Web.Input.Core.NotifyObject
      GrapeCity.Web.Input.Core.BaseViewState
         GrapeCity.Web.Input.Core.ListBox.ListColumn

参照

ListColumn メンバ
GrapeCity.Web.Input.Core.ListBox 名前空間
ListBox.Columns プロパティ
GcListBox.Columns プロパティ

 

 


© 2005-2015 GrapeCity inc. All rights reserved.