SortDirection Enum
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Describes the direction in which a QuickGrid<TGridItem> column is sorted.
public enum SortDirection
type SortDirection =
Public Enum SortDirection
- Inheritance
-
SortDirection
Fields
Name | Value | Description |
---|---|---|
Auto | 0 | Automatic sort order. When used with SortByColumnAsync(ColumnBase<TGridItem>, SortDirection), the sort order will automatically toggle between Ascending and Descending on successive calls, and resets to Ascending whenever the specified column is changed. |
Ascending | 1 | Ascending order. |
Descending | 2 | Descending order. |