ComboBox for ASP.NET Web Forms
SelectedItems プロパティ
使用例 

C1.Web.Wijmo.Controls.4 アセンブリ > C1.Web.Wijmo.Controls.C1ComboBox 名前空間 > C1ComboBox クラス : SelectedItems プロパティ
C1ComboBox の SelectedItems を取得します。
シンタックス
'宣言
 
Public Overridable ReadOnly Property SelectedItems As C1ComboBoxItem()
public virtual C1ComboBoxItem[] SelectedItems {get;}
使用例
C1ComboBox c = new C1ComboBox(); 
c.Items.Add(new C1ComboBoxItem("test1")); 
c.Items.Add(new C1ComboBoxItem("test2")); 
c.SelectionMode = C1ComboBoxSelectionMode.Multiple; 
ArrayList indicesToSelect = new ArrayList(); 
indicesToSelect.Add(0); 
indicesToSelect.Add(1); 
// 2つの項目を選択します。
c.SelectedIndices = indicesToSelect; 
C1ComboBoxItem[] items = new C1ComboBoxItem[2]; 
items = c.SelectedItems;
参照

C1ComboBox クラス
C1ComboBox メンバ