TdxCustomMemData.SortOptions Property
Specifies sort operation flags.
Declaration
property SortOptions: TdxSortOptions read; write;
Property Value
Type | Description |
---|---|
TdxSortOptions | The set of flags that correspond to individual sort operation settings. |
Remarks
Use the SortOptions
property to enable or disable specific sort operation settings.
Sort Operation Setting Flags
The SortOptions
property value can include any number of the following flags in any combination:
- soDesc
The TdxMemData component sorts data against all listed fields in descending order, except for fields followed by a colon and the
'A'
or'a'
sort order syntax flag.If the flag is omitted, the component sorts data in ascending order, except for listed fields followed by a colon and the
'D'
or'd'
sort syntax flag.- soCaseInsensitive
The TdxMemData component ignores character case for sort operations against all fields listed in the SortedFields property value.
If this flag is omitted, sort operations are case-sensitive, except for those fields followed by a colon and the
'N'
or'n'
sort syntax flag.
Default Value
The SortOptions
property’s default value is []
.