名前空間一覧 > GrapeCity.Web.Input.Core.ListBox 名前空間 : ListColumn クラス |
Public Class ListColumn Inherits GrapeCity.Web.Input.Core.BaseViewState
public class ListColumn : GrapeCity.Web.Input.Core.BaseViewState
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