Assembly: Forms;
The ITreeListNode interface contains properties and methods of the tree nodes.
ITreeListNode
To work with collection of nodes, use the ITreeListNodes interface.
Property name | Brief description | |
The Accessibility property determines whether tree elements will be active. | ||
The Bold property determines whether element text is displayed in bold. | ||
The Checked property determines whether the selection is set for the element of the component. | ||
The CheckState property determines a state of selection of the tree element. | ||
The ColumnText property determines a text of the specified column for the current element. | ||
The Cut property determines whether the element is marked as cut out. | ||
The Data property enables the user to correspond the data of custom structure to the tree element. | ||
The Expanded property determines whether hierarchy the tree node is expanded or collapsed. | ||
The Focused property determines whether the element is focused. | ||
The Id property returns the unique numeric identifier of the element. | ||
The ImageIndex property determines index of the image that is placed to the left of the text of the element in the first column of the component. | ||
The Index property returns index of the element in the list of child elements of the parent. | ||
The IsDropTarget property determines whether any node is passing over the current node at the moment. | ||
The Level property returns index of the level, at which this node is located. | ||
The NextNode property returns the next element of the tree. | ||
The NextSelectedNode property returns the next selected tree element. | ||
The NextSiblingNode property returns the next neighboring node that is located at the same level with this node. | ||
The OverlayIndex property determines index of the overlay. | ||
The Parent property returns the parent element for this element. | ||
The PreviousNode property returns the previous element of the tree. | ||
The PreviousSelectedNode property returns the previous selected tree element. | ||
The PreviousSiblingNode property returns the previous neighboring node that is located at the same level with this node. | ||
The Selected property determines whether the element is selected. | ||
The SelectedIndex property determines index that connects the element with one of the images of the Images property that displays the selected elements. | ||
The StateIndex property determines index that connects the element with one of the images of the StateImages property that displays the state of the element. | ||
The Text property determines text of the first column for the current element. | ||
The Visible property determines whether the element is in the component visible area. |
Property name | Brief description | |
Count | The Count property returns the number of child elements. | |
FirstChild | The FirstChild property returns parameters of the first child element. | |
HasChildren | The HasChildren property determines whether this element has child elements. | |
Item | The Item property returns parameters of the specified child element. | |
LastChild | The LastChild property returns parameters of the last child element. | |
TreeControl | The TreeControl property returns the parent object. |
Method name | Brief description | |
The Delete method deletes the current element with all child elements of the tree. | ||
The EditText method returns the value that checks if the edit mode can be enabled. | ||
The EndEdit method enables the user to exit the edit mode of the text of the tree elements. | ||
The IsChild method determines whether the current element is a child for the element passing as in parameter. | ||
The IsParent method determines whether the current element is a parent for the element passing as in parameter. | ||
The MakeVisible method scrolls the tree of elements so that this element is in the visible area of the component. | ||
The MoveTo method moves top element to selected position. | ||
The SelectNode method selects the element of the tree. | ||
The SelectSiblings method selects the elements of the level, at which this element is located. | ||
The Sort method sorts by the contents of the specified column. | ||
The SortDefault method sorts the column specified in the SortColumn property by contents. | ||
The UnselectNode method deselects the element of the tree. | ||
The UnselectSiblings method deselects the elements of the level, at which this element is located. |
Method name | Brief description | |
AnyChildSelected | The AnyChildSelected method returns whether there are selected child elements. | |
Collapse | The Collapse method collapses the structure of child elements of the tree. | |
DeleteChildren | The DeleteChildren method deletes all child elements of the current element. | |
Expand | The Expand method expands hierarchy of the child elements tree. | |
SelectChildren | The SelectChildren method selects child elements. | |
UnselectChildren | The UnselectChildren method deselects child elements. |
See also: