Removes the specified C1ComboBoxItem 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 Remove(
	C1ComboBoxItem child
)
Visual Basic (Declaration)
Public Sub Remove ( _
	child As C1ComboBoxItem _
)

Examples

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

See Also