'宣言 Public Shadows Sub Insert( _ ByVal index As System.Integer, _ ByVal child As C1ComboBoxItem _ )
public new void Insert( System.int index, C1ComboBoxItem child )
パラメータ
- index
- C1ComboBoxItem が追加される位置。値は 0 以上である必要があります。
- child
- C1ComboBoxItem インスタンス。
'宣言 Public Shadows Sub Insert( _ ByVal index As System.Integer, _ ByVal child As C1ComboBoxItem _ )
public new void Insert( System.int index, C1ComboBoxItem child )
C1ComboBox c = new C1ComboBox(); c.Items.Add(new C1ComboBoxItem("test1")); c.Items.Insert(0,new C1ComboBoxItem("test2"));