Skip to main content

DevExpress v24.2 Update — Your Feedback Matters

Our What's New in v24.2 webpage includes product-specific surveys. Your response to our survey questions will help us measure product satisfaction for features released in this major update and help us refine our plans for our next major release.

Take the survey Not interested

TdxSpreadSheetReportDesignerDataField.SortOrder Property

Specifies the sort order applied to the stored data field.

#Declaration

Delphi
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