IBinaryTreeNode.Parent

Syntax

Parent: IBinaryTreeNode;

Description

The Parent property returns the root node of binary tree.

Comments

To get the left and right nodes of binary tree, use the IBinaryTreeNode.LeftNode and IBinaryTreeNode.RightNode properties, respectively.

Example

The property use is given in the example for IBinaryTreeNode.Value.

See also:

IBinaryTreeNode