Representation of non-circular tree data. Each node added to the tree may only be present in it a single time, in order to facilitate cycle detection.
Constructors
public Tree(IRenderable renderable)
Initializes a new instance of the Tree class.
Parameters:
renderable (IRenderable)The tree label.
public Tree(string label)
Initializes a new instance of the Tree class.
Parameters:
label (string)The tree label.
Properties
Expanded
: boolGets or sets a value indicating whether or not the tree is expanded or not.
Guide
: TreeGuideGets or sets the tree guide lines.
Nodes
: List<TreeNode>Gets the tree's child nodes.