Insert Method (C1ComboBoxItemCollection)
Inserts a
C1ComboBoxItem at the specified position in the collection.
'Declaration
Public Shadows Sub Insert( _
ByVal As System.Integer, _
ByVal As C1ComboBoxItem _
)
Parameters
- index
- Position where the C1ComboBoxItem will be added. The value should be greater than or equal to 0.
- child
- C1ComboBoxItem instance.
C1ComboBox c = new C1ComboBox();
c.Items.Add(new C1ComboBoxItem("test1"));
c.Items.Insert(0,new C1ComboBoxItem("test2"));