TdxTreeCustomNode Properties
The base class for tree node classes.| Name | Description |
|---|---|
| Count | Returns the total count of the node’s children. |
| Data | Specifies a pointer to custom data associated with the node. |
| Expanded | Specifies if the node is expanded. |
| First | Provides access to the node’s first child. |
| HasChildren | Specifies whether the node expand button is visible if the node has no children. |
| ImageIndex | Specifies the node image index. |
| Index | Returns the node index in the parent node’s Items collection. |
| Items | Provides indexed access to the node’s children. |
| Last | Provides access to the node’s last child. |
| Level | Returns the node’s nesting level in the tree. |
| Next | Provides access to the node’s next sibling. |
| Owner | Provides access to the node owner. |
| Parent | Provides access to the node’s parent. |
| Prev | Provides access to the node’s previous sibling. |
| Root | Provides access to the root node. |
| Visible | Specifies if the node is visible. |
See Also