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

TcxTreeListNode.AbsoluteIndex Property

Returns the node’s index in the TreeList control.

#Declaration

Delphi
property AbsoluteIndex: Integer read;

#Property Value

Type Description
Integer

The node’s index.

#Remarks

Indexes start from the root node with index -1. Its first child node (the first root node) has index 0. Then, the child nodes of this node are indexed, if any. When all child nodes of a node are indexed, indexing continues from the next node at the upper level. In other words, indexes are assigned to nodes as if all nodes in the TreeList control are expanded.

The following image explains node indexing:

Note

The AbsoluteIndex property value is updated when the node order is changed.

See Also