Skip to main content

DataControlBase.SortBy(String, ColumnSortOrder) Method

Sorts data by the values of the specified column in the specified order.

Namespace: DevExpress.WinUI.Grid

Assembly: DevExpress.WinUI.Grid.v23.2.dll

NuGet Package: DevExpress.WinUI

Declaration

public void SortBy(
    string fieldName,
    ColumnSortOrder sortedOrder
)

Parameters

Name Type Description
fieldName String

The column’s field name.

sortedOrder ColumnSortOrder

The column’s sort order.

Remarks

The GridControl allows you to sort its data by multiple columns. The GridControl does not clear previous sort options when you call the SortBy method.

Refer to the following help topic for more information: Sort Data.

See Also