ListBoxItemCollection.Remove(Object) Method
Removes the specified item from the collection.
Namespace: DevExpress.XtraEditors.Controls
Assembly: DevExpress.XtraEditors.v24.2.dll
Declaration
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.
See Also