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

C1.Web.Wijmo.Controls.4 Assembly > C1.Web.Wijmo.Controls.C1ComboBox Namespace > C1ComboBoxItemCollection Class : Clear Method
Removes all C1ComboBoxItems from the collection.
Syntax
'Declaration
 
Public Shadows Sub Clear() 
public new void Clear()
Example
C1ComboBox c = new C1ComboBox();
c.Items.Add(new C1ComboBoxItem("test1"));
c.Items.Add(new C1ComboBoxItem("test2"));
// items are clear.
c.Items.Clear();
See Also

Reference

C1ComboBoxItemCollection Class
C1ComboBoxItemCollection Members