DataControlBase.SortBy(String, ColumnSortOrder) Method
In This Article
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 |
---|---|---|
field |
String | The column’s field name. |
sorted |
Column |
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