C1.Web.Wijmo.Controls.45 Assembly / C1.Web.Wijmo.Controls.C1ComboBox Namespace / C1ComboBoxItemCollection Class / RemoveAt Method
Index of C1ComboBoxItem to remove.
Example

In This Topic
RemoveAt Method (C1ComboBoxItemCollection)
In This Topic
Removes the C1ComboBoxItem at the specified index from the list.
Syntax
'Declaration
 
Public Shadows Sub RemoveAt( _
   ByVal index As System.Integer _
) 
 

Parameters

index
Index of C1ComboBoxItem to remove.
Example
C1ComboBox c = new C1ComboBox();
c.Items.Add(new C1ComboBoxItem("test1"));
c.Items.RemoveAt(0);
See Also