ComboBox for ASP.NET Web Forms
SelectedIndices プロパティ (C1ComboBox)
使用例 

C1.Web.Wijmo.Controls.4 アセンブリ > C1.Web.Wijmo.Controls.C1ComboBox 名前空間 > C1ComboBox クラス : SelectedIndices プロパティ
C1ComboBox の SelectedIndices を取得または設定します。
シンタックス
'宣言
 
Public Overridable Property SelectedIndices As System.Collections.ArrayList
public virtual System.Collections.ArrayList SelectedIndices {get; set;}
使用例
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;
参照

C1ComboBox クラス
C1ComboBox メンバ