GridSortInfo(String, ListSortDirection, Boolean) Constructor
Initializes a new instance of the GridSortInfo class with the specified settings.
Namespace: DevExpress.Xpf.Grid
Assembly: DevExpress.Xpf.Grid.v25.1.Core.dll
NuGet Package: DevExpress.Wpf.Grid.Core
Declaration
public GridSortInfo(
string fieldName,
ListSortDirection sortOrder,
bool mergeWithPreviousGroup
)
Parameters
| Name | Type | Description |
|---|---|---|
| fieldName | String | A String value that specifies the field name of the column to sort. |
| sortOrder | ListSortDirection | A ListSortDirection enumeration value that specifies the sort order. This value is assigned to the GridSortInfo.SortOrder property. |
| mergeWithPreviousGroup | Boolean | A Boolean value that specifies whether the group should be merged with the previous group. This value is assigned to the GridSortInfo.MergeWithPreviousGroup property. |
See Also