RemoveAt Method (C1ComboBoxItemCollection)
Removes the
C1ComboBoxItem at the specified index from the list.
public new void RemoveAt(
System.int
)
'Declaration
Public Shadows Sub RemoveAt( _
ByVal As System.Integer _
)
Parameters
- index
- Index of C1ComboBoxItem to remove.
C1ComboBox c = new C1ComboBox();
c.Items.Add(new C1ComboBoxItem("test1"));
c.Items.RemoveAt(0);