|
AddChild(TGCustomTreeNode)
|
Adds the input tree node as a child of the current node. (Overrides GTree.TGCustomTreeNode.AddChild(TGCustomTreeNode).)
|
|
AddLeftChild
|
Creates a new left child node of the current node. The new node is returned. If the left child already exists, the previous child is first freed.
|
|
AddRightChild
|
Creates a new right child node of the current node. The new node is returned. If the right child already exists, the previous child is first freed.
|
|
DeleteChild(TGCustomTreeNode)
|
Deletes and frees the input node from the list of child nodes. All of the input node's children are also deleted. (Overrides GTree.TGCustomTreeNode.DeleteChild(TGCustomTreeNode).)
|
|
GetChild(Integer)
|
Returns the child node at the specified index. (Overrides GTree.TGCustomTreeNode.GetChild(Integer).)
|
|
GetChildCount
|
Returns the number of children for the node. (Overrides GTree.TGCustomTreeNode.GetChildCount.)
|
|
InsertChild(Integer)
|
Inserts a new child node into the list of children at the specified location. The new child node is returned. (Overrides GTree.TGCustomTreeNode.InsertChild(Integer).)
|
|
SetChild(Integer,TGCustomTreeNode)
|
Sets the child node at the specified index to the input ANode. (Overrides GTree.TGCustomTreeNode.SetChild(Integer,TGCustomTreeNode).)
|