ComboBox for ASP.NET Web Forms
RemoveAt Method (C1ComboBoxItemCollection)
Example 

C1.Web.Wijmo.Controls.4 Assembly > C1.Web.Wijmo.Controls.C1ComboBox Namespace > C1ComboBoxItemCollection Class : RemoveAt Method
Index of C1ComboBoxItem to remove.
Removes the C1ComboBoxItem at the specified index from the list.
Syntax
'Declaration
 
Public Shadows Sub RemoveAt( _
   ByVal index As System.Integer _
) 
public new void RemoveAt( 
   System.int index
)

Parameters

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

Reference

C1ComboBoxItemCollection Class
C1ComboBoxItemCollection Members