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

GridColumnSortInfo.SortOrder Property

Gets or sets the column’s sort order.

Namespace: DevExpress.XtraGrid.Columns

Assembly: DevExpress.XtraGrid.v19.2.dll

Declaration

public virtual ColumnSortOrder SortOrder { get; set; }

Property Value

Type Description
ColumnSortOrder

A ColumnSortOrder enumeration value specifying 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 which sort order is currently applied to the GridColumnSortInfo.Column. This property is initialized in the constructor.

See Also