TdxTreeViewCustomOptionsBehavior.SortType Property
In This Article
Specifies the criteria by which the Tree View sorts its nodes after a node’s caption and associated data pointer changes.
#Declaration
Delphi
property SortType: TSortType read; write; default stNone;
#Property Value
Type | Default | Description |
---|---|---|
TSort |
st |
The node sort criteria. |
#Remarks
Options include:
Value | Description |
---|---|
st |
The control sorts no tree nodes. |
st |
The control sorts nodes by their Caption property. |
st |
The control sorts tree nodes by their Data property. Note that you should handle the control’s Onst . |
st |
The control sorts nodes by their Caption and Data properties. The built-in comparison routine ignores Data property values. Handle the control’s On |
The SortType
property’s default value is stNone
.
See Also