Skip to main content
A newer version of this page is available. .

ComboBoxItemCollection.Remove(Object) Method

Removes the specified object from the collection.

Namespace: DevExpress.XtraEditors.Controls

Assembly: DevExpress.XtraEditors.v19.2.dll

Declaration

public virtual void Remove(
    object item
)

Parameters

Name Type Description
item Object

The item to remove from the collection.

Remarks

Use the Remove method to remove a specific item from the collection. When an item is removed, all subsequent elements are moved up one position in the collection.

To add a new item to the collection, use the ComboBoxItemCollection.Add, ComboBoxItemCollection.AddRange and ComboBoxItemCollection.Insert methods.

The following code snippets (auto-collected from DevExpress Examples) contain references to the Remove(Object) method.

Note

The algorithm used to collect these code examples remains a work in progress. Accordingly, the links and snippets below may produce inaccurate results. If you encounter an issue with code examples below, please use the feedback form on this page to report the issue.

See Also