TdxListViewSortType Enum
#Declaration
TdxListViewSortType = (
None,
Data,
Text,
Both
);
#Members
Name | Description |
---|---|
None
|
The control sorts no list items. |
Data
|
The control sorts list items by their Data properties. Note that you should handle the control’s On |
Text
|
The control sorts items by their Caption property values. |
Both
|
The control sorts items by their Caption and Data properties. However, the built-in comparison routine ignores Data property values during sort operations. Handle the control’s On |
#Remarks
The List View’s SortType property references the TdxListViewSortType type.
Note
Tdx
is a scoped enumeration type. Use the type name together with a scope resolution token (.
in Delphi or ::
in C++Builder) followed by an enumeration value to refer to this value. For example, use Tdx
(in Delphi) or Tdx
(in C++Builder) to refer to the Text
value in code.