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

ASPxGridBeforeColumnGroupingSortingEventArgs.OldSortIndex Property

Gets a column’s (row’s for ASPxVerticalGrid) previous position among sorted columns (rows).

Namespace: DevExpress.Web

Assembly: DevExpress.Web.v19.1.dll

Declaration

public int OldSortIndex { get; }

Property Value

Type Description
Int32

An integer value that specifies the previous position.

Remarks

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

ASPxGridView

To obtain the column’s current position among sorted columns, use its GridViewDataColumn.SortIndex property.

Grid View - Getting Started

ASPxCardView

To obtain the column’s current position among sorted columns, use its CardViewColumn.SortIndex property.

Card View - Getting Started

ASPxVerticalGrid

To obtain the row’s current position among sorted rows, use its VerticalGridDataRow.SortIndex property.

Vertical Grid - Getting Started

See Also