Parent: IBinaryTreeNode;
The Parent property returns the root node of binary tree.
To get the left and right nodes of binary tree, use the IBinaryTreeNode.LeftNode and IBinaryTreeNode.RightNode properties, respectively.
The property use is given in the example for IBinaryTreeNode.Value.
See also: