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

ASPxGridViewBeforeColumnGroupingSortingEventArgs(GridViewDataColumn, ColumnSortOrder, Int32, Int32) Constructor

Initializes a new instance of the ASPxGridViewBeforeColumnGroupingSortingEventArgs class.

Namespace: DevExpress.Web

Assembly: DevExpress.Web.v18.2.dll

Declaration

public ASPxGridViewBeforeColumnGroupingSortingEventArgs(
    GridViewDataColumn column,
    ColumnSortOrder oldSortOrder,
    int oldSortIndex,
    int oldGroupIndex
)

Parameters

Name Type Description
column GridViewDataColumn

A GridViewDataColumn object that represents the processed data column. This value is assigned to the ASPxGridViewBeforeColumnGroupingSortingEventArgs.Column property.

oldSortOrder ColumnSortOrder

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

oldSortIndex Int32

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

oldGroupIndex Int32

An integer value that specifies the column’s previous position among grouped columns. This value is assigned to the ASPxGridViewBeforeColumnGroupingSortingEventArgs.OldGroupIndex property.

See Also