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

C1.Web.Wijmo.Controls.4 アセンブリ > C1.Web.Wijmo.Controls.C1ComboBox 名前空間 > C1ComboBoxItemCollection クラス : SelectedIndices プロパティ
C1ComboBox の選択したインデックスを取得または設定します。
シンタックス
'宣言
 
Public Property SelectedIndices As System.Collections.ArrayList
public 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);
c.SelectedIndices = indicesToSelect;
参照

C1ComboBoxItemCollection クラス
C1ComboBoxItemCollection メンバ