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

GridColumnSortInfo(GridColumn, ColumnSortOrder) Constructor

Initializes a new instance of the GridColumnSortInfo class.

Namespace: DevExpress.XtraGrid.Columns

Assembly: DevExpress.XtraGrid.v19.2.dll

Declaration

public GridColumnSortInfo(
    GridColumn column,
    ColumnSortOrder sortOrder
)

Parameters

Name Type Description
column GridColumn

A GridColumn object representing the column which will be sorted. This value is assigned to the GridColumnSortInfo.Column property.

sortOrder ColumnSortOrder

A ColumnSortOrder value specifying the sorting settings for the column. This value is assigned to the GridColumnSortInfo.SortOrder property.

Remarks

Use this constructor to create GridColumnSortInfo objects. These can then be added to the ColumnView.SortInfo collection, to apply sorting or grouping to a View.

See Also