Skip to main content
Tag

ColumnBase.SortOrder Property

Gets or sets the column's sort order. This is a dependency property.

Namespace: DevExpress.Xpf.Grid

Assembly: DevExpress.Xpf.Grid.v14.2.Core.dll

#Declaration

[Browsable(false)]
public ColumnSortOrder SortOrder { get; set; }

#Property Value

Type Description
ColumnSortOrder

A ColumnSortOrder enumeration value that specifies the column's sort order.

#Remarks

Any previous sorting is not cleared when changing the SortOrder property's value. The new sort order applies an additional sorting condition to the one previously applied.

To apply sorting, you can also use the GridControl.SortBy method. To learn more, see Sorting in Code.

See Also