TcxTreeListNode.AlphaSort(Boolean) Method
Sorts the node’s child nodes.
Declaration
procedure AlphaSort(ARecurse: Boolean = False);
Parameters
Name | Type |
---|---|
ARecurse | Boolean |
Remarks
The order in which the AlphaSort method sorts nodes is dependent upon the column’s SortOrder property. Note that if the column’s SortOrder property is soNone, nodes are sorted by the indexes of the corresponding records. To sort nodes starting from the top level, use the root node‘s AlphaSort method.
ARecurse specifies whether sorting is to be performed recursively (in all children). If ARecurse is False, only the node’s immediate children are sorted.
See Also