Skip to main content
Tab

ASPxVerticalGridBeforeRowSortingEventArgs(VerticalGridDataRow, ColumnSortOrder, Int32) Constructor

Initializes a new instance of the ASPxVerticalGridBeforeRowSortingEventArgs class.

Namespace: DevExpress.Web

Assembly: DevExpress.Web.v23.2.dll

NuGet Package: DevExpress.Web

Declaration

public ASPxVerticalGridBeforeRowSortingEventArgs(
    VerticalGridDataRow row,
    ColumnSortOrder oldSortOrder,
    int oldSortIndex
)

Parameters

Name Type Description
row VerticalGridDataRow

A VerticalGridDataRow object that is the processed data row. This value is assigned to the ASPxVerticalGridBeforeRowSortingEventArgs.Row property.

oldSortOrder ColumnSortOrder

A ColumnSortOrder enumeration value that specifies the row’s previous sort order. This value is assigned to the ASPxGridBeforeColumnGroupingSortingEventArgs.OldSortOrder property.

oldSortIndex Int32

An integer value that specifies the row’s previous position among sorted rows. This value is assigned to the ASPxGridBeforeColumnGroupingSortingEventArgs.OldSortIndex property.

See Also