'Declaration Public Shadows Sub Remove( _ ByVal child As C1ComboBoxItem _ )
public new void Remove( C1ComboBoxItem child )
Parameters
- child
- C1ComboBoxItem to remove.
'Declaration Public Shadows Sub Remove( _ ByVal child As C1ComboBoxItem _ )
public new void Remove( C1ComboBoxItem child )
C1ComboBox c = new C1ComboBox(); C1ComboBoxItem item = new C1ComboBoxItem("test1") c.Items.Add(item); c.Items.Remove(item);