ColumnSort
Defines how a Column is sorted
TypeScript
export interfaceProperties
| Property | Description |
|---|---|
| ColumnId | Id of Column being sorted |
| SortOrder | How Column is sorted - either 'Asc' or 'Desc' |
Property Details
ColumnId
Id of Column being sorted
TypeScript
ColumnId: string;Property Value
string
SortOrder
How Column is sorted - either 'Asc' or 'Desc'
TypeScript
SortOrder: 'Asc' | 'Desc';Property Value
'Asc' | 'Desc'