Skip to main content
Tab

ListBoxColumnCollection.Remove(ListBoxColumn) Method

Removes the specified column from the collection.

Namespace: DevExpress.Web

Assembly: DevExpress.Web.v23.2.dll

NuGet Package: DevExpress.Web

Declaration

public void Remove(
    ListBoxColumn column
)

Parameters

Name Type Description
column ListBoxColumn

A ListBoxColumn object to remove from the collection.

Remarks

Use the Remove method to remove the specified column from the collection.

Use the ListBoxColumnCollection.Add method to add the specified column to the end of the control’s column collection. To add a column to the specified position within the collection, use the ListBoxColumnCollection.Insert method.

Use the ListBoxColumnCollection.Item property to access the individual column by its index, within the collection.

See Also