TdxSpreadSheetReportDesignerDataField.SortOrder Property
Specifies the sort order applied to the stored data field.
Declaration
property SortOrder: TdxSortOrder read; write;
Property Value
Type |
---|
TdxSortOrder |
Remarks
You can use this property to specify the type of a sort operation performed against the data field’s values.
Options include:
Value | Description | Example (“Unit Price” is the Sorted Field) |
---|---|---|
soNone | The data field values are used during sorting operations. | |
soAscending | The bound dataset’s records are sorted in ascending order of the field values. | |
soDescending | The bound dataset’s records are sorted in descending order of the field values. |
Note
To modify the field value interpretation for sort operations, use the Options.AnsiSort and Options.CaseInsensitive properties provided by the respective master or detail dataset link.
See Also