PowerTools InputMan for ASP.NET 8.0J
SubItem コンストラクタ(String)
使用例 

サブ項目の値(String 型)
指定したデータを含むSubItemクラスの新しいインスタンスを初期化します。
構文
Public Function New( _
   ByVal value As String _
)
public SubItem( 
   string value
)

パラメータ

value
サブ項目の値(String 型)
使用例
次のサンプルコードでは、SubItemクラスのコンストラクタを使用して、コンボコントロールにサブ項目を追加する例を示します。
Imports GrapeCity.Web.Input.IMCombo
Imports GrapeCity.Web.Input.Core.ListBox

GcComboBox1.Items.Add(New ComboItem(New SubItem("AAA"), New SubItem("aaa"), New SubItem("あああ")))
GcComboBox1.Items.Add(New ComboItem(New SubItem("BBB"), New SubItem("bbb"), New SubItem("いいい")))
GcComboBox1.Items.Add(New ComboItem(New SubItem("CCC"), New SubItem("ddd"), New SubItem("ううう")))
using GrapeCity.Web.Input.IMCombo;
using GrapeCity.Web.Input.Core.ListBox;

GcComboBox1.Items.Add(new ComboItem(new SubItem("AAA"), new SubItem("aaa"), new SubItem("あああ")));
GcComboBox1.Items.Add(new ComboItem(new SubItem("BBB"), new SubItem("bbb"), new SubItem("いいい")));
GcComboBox1.Items.Add(new ComboItem(new SubItem("CCC"), new SubItem("ddd"), new SubItem("ううう")));
参照

SubItem クラス
SubItem メンバ
オーバーロード一覧

 

 


© 2005-2015 GrapeCity inc. All rights reserved.