ITree<T>
Interface
An interface for the tree data structure.
Definition
Namespace:Telerik.Windows.Diagrams.Core
Assembly:Telerik.Windows.Diagrams.Core.dll
Type Parameters:
T
The type of elements in the tree.
Syntax:
C#
public interface ITree<T>
Derived Classes:
Properties
Data
T
Gets the data held in this node.
C#
T Data { get; }
The data.
Gets the degree of this node.
C#
int Degree { get; }
The degree of this node.
Gets the height of this tree.
C#
int Height { get; }
The height of this tree.
Gets a value indicating whether this instance is leaf node.
C#
bool IsLeafNode { get; }
true if this instance is leaf node; otherwise, false.
Methods
Adds the specified child to the tree.