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

ASPxGridBeforeColumnGroupingSortingEventArgs.OldSortOrder Property

Gets a column’s (row’s for ASPxVerticalGrid) previous sort order.

Namespace: DevExpress.Web

Assembly: DevExpress.Web.v19.1.dll

Declaration

public ColumnSortOrder OldSortOrder { get; }

Property Value

Type Description
ColumnSortOrder

One of the ColumnSortOrder enumeration values.

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

Find control-specific information (for ASPxGridView, ASPxCardView or ASPxVerticalGrid) in the sections below.

ASPxGridView

To obtain the column’s current sort order, use its GridViewDataColumn.SortOrder property.

Grid View - Getting Started

ASPxCardView

To obtain the column’s current sort order, use its CardViewColumn.SortOrder property.

Card View - Getting Started

ASPxVerticalGrid

To obtain the row’s current sort order, use its VerticalGridDataRow.SortOrder property.

Vertical Grid - Getting Started

See Also