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

TdxSortOption Enum

Enumerates sort operation setting flags in a memory-based dataset component.

#Declaration

Delphi
TdxSortOption = (
    soDesc,
    soCaseInsensitive
);

#Members

Name Description
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.

#Remarks

The TdxSortOption type enumerates flags that correspond to individual sort operation settings in a TdxMemData component. The TdxCustomMemData.SortOptions property can include any number of TdxSortOption flags in any combination.

#Direct TdxSortOption Type Reference

The TdxSortOptions type references the TdxSortOption type.

See Also