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

ListBoxItemCollection.Remove(Object) Method

Removes the specified item 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

An object representing the item to be removed 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. You can also use the RemoveAt method to remove the item at the specified position. To remove all items from the collection, use the Clear method.

To add a new item to the collection, use the ListBoxItemCollection.Add method.

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