Skip to main content

CustomColumnSortEventArgs.SortOrder Property

Gets the current sort order applied to the column being processed.

Namespace: DevExpress.XtraGrid.Views.Base

Assembly: DevExpress.XtraGrid.v22.2.dll

NuGet Package: DevExpress.Win.Grid

Declaration

public ColumnSortOrder SortOrder { get; }

Property Value

Type Description
ColumnSortOrder

A ColumnSortOrder value representing the column’s sort order.

Available values:

Name Description
None

No sorting is applied to a column.

Ascending

Sorts the column in ascending order.

Descending

Sorts the columns in descending order.

Remarks

The SortOrder property indicates the sort order (ascending or descending) applied to the column being processed.

When handling the GridView.CustomColumnGroup event the SortOrder property is always set to ColumnSortOrder.None.

See Also