Removes the C1ComboBoxItem at the specified index from the list.

Namespace:  C1.Web.UI.Controls.C1ComboBox
Assembly:  C1.Web.UI.Controls.3 (in C1.Web.UI.Controls.3.dll)

Syntax

C#
public void RemoveAt(
	int index
)
Visual Basic (Declaration)
Public Sub RemoveAt ( _
	index As Integer _
)

Parameters

index
Type: System..::..Int32
Index of C1ComboBoxItem to remove.

Examples

Copy CodeC#
C1ComboBox c = new C1ComboBox();
c.Items.Add(new C1ComboBoxItem("test1"));
c.Items.RemoveAt(0);

See Also