Tree Class
The Tree class is used to manage data that has a hierarchical structure. A tree contains a collection of TreeNode objects, each of which has attributes indicating their relationship to each other. The top tree node in the hierarchy is referred to as the root node. A root has no parent node, but it can have children and sibling nodes.
Inherits From
Inherited By
None
Attributes
Nodes
RootNode
Methods
AddNode
DeleteNode
NextNode
NodeByKey
NodeByName
StartTraverse
StopTraverse