Remove Method (C1ComboBoxItemCollection)
Removes the specified
C1ComboBoxItem from the list.
Parameters
- child
- C1ComboBoxItem to remove.
C1ComboBox c = new C1ComboBox();
C1ComboBoxItem item = new C1ComboBoxItem("test1")
c.Items.Add(item);
c.Items.Remove(item);