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

GridColumnSortInfoCollection.Remove(GridColumn) Method

Removes the element from the collection that refers to the specified column.

Namespace: DevExpress.XtraGrid.Columns

Assembly: DevExpress.XtraGrid.v19.1.dll

Declaration

public void Remove(
    GridColumn column
)

Parameters

Name Type Description
column GridColumn

A GridColumn object identifying the collection’s required item.

Remarks

The Remove method locates and then removes the GridColumnSortInfo element from the current collection whose GridColumnSortInfo.Column property refers to column. If such an element isn’t found this method does nothing.

Removing an element from the collection automatically removes any sorting or grouping by the corresponding column.

See Also