ComponentOne ComboBox for ASP.NET Web Forms
C1.Web.Wijmo.Controls.4 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 _
    ) 
    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