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

ASPxGridBeforeColumnGroupingSortingEventArgs(IWebGridDataColumn, ColumnSortOrder, Int32, Int32) Constructor

Initializes a new instance of the ASPxGridBeforeColumnGroupingSortingEventArgs class.

Namespace: DevExpress.Web

Assembly: DevExpress.Web.v18.2.dll

Declaration

public ASPxGridBeforeColumnGroupingSortingEventArgs(
    IWebGridDataColumn column,
    ColumnSortOrder oldSortOrder,
    int oldSortIndex,
    int oldGroupIndex
)

Parameters

Name Type Description
column IWebGridDataColumn

A IWebGridDataColumn supported 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