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

In This Topic
Remove Method (C1ComboBoxItemCollection)
In This Topic
Removes the specified C1ComboBoxItem from the list.
Syntax
'Declaration
 
Public Shadows Sub Remove( _
   ByVal child As C1ComboBoxItem _
) 
 

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