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

コントロールのカラムを設定するGrapeCity.Web.Input.Core.ListBox.ListColumnオブジェクトのコレクションを参照します。
構文
Public ReadOnly Property Columns As Collection(Of ListColumn)
public Collection<ListColumn> Columns {get;}
解説
リストコントロールで複数行を表示するには、Columnsプロパティを使用してカラムを追加します。各カラムではスタイル、カラムは保持する項目の表示内容、ソート基準など個別の機能が設定できます。カラムの詳細を設定するには、GrapeCity.Web.Input.Core.ListBox.ListColumnクラスを使用します。
使用例
次のサンプルコードでは、リストコントロールにカラムを追加する方法を示します。
Imports GrapeCity.Web.Input.Core.ListBox

GcListBox1.Columns.Add(New ListColumn("氏名"))
GcListBox1.Columns.Add(New ListColumn("住所"))
GcListBox1.Columns.Add(New ListColumn("電話番号"))
using GrapeCity.Web.Input.Core.ListBox;

GcListBox1.Columns.Add(new ListColumn("氏名"));
GcListBox1.Columns.Add(new ListColumn("住所"));
GcListBox1.Columns.Add(new ListColumn("電話番号"));
参照

GcListBox クラス
GcListBox メンバ

 

 


© 2005-2015 GrapeCity inc. All rights reserved.