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

C1.Web.Wijmo.Controls.4 Assembly > C1.Web.Wijmo.Controls.C1ComboBox Namespace > C1ComboBoxItemCollection Class : Remove Method
C1ComboBoxItem to remove.
Removes the specified C1ComboBoxItem from the list.
Syntax
'Declaration
 
Public Shadows Sub Remove( _
   ByVal child As C1ComboBoxItem _
) 
public new void Remove( 
   C1ComboBoxItem child
)

Parameters

child
C1ComboBoxItem to remove.
Example
C1ComboBox c = new C1ComboBox();
C1ComboBoxItem item = new C1ComboBoxItem("test1")
c.Items.Add(item);
c.Items.Remove(item);
See Also

Reference

C1ComboBoxItemCollection Class
C1ComboBoxItemCollection Members