TdxDBTreeNodes.Items Property
An index of the DBdxTreeNodes in the TdxDBTreeNodes.
Declaration
property Items[Index: Integer]: TdxDBTreeNode read; default;
Property Value
Type |
---|
TdxDBTreeNode |
Remarks
The Items property contains individual items that appear in the dbtree view control. Individual nodes in the TdxDBTreeView are the TdxDBTreeNode objects. These items can be accessed by means of the Items property along with the item’s index into the dbtree view. For example, to access the first db item in a DBTreeView, you could use the following code:
MyDBTreeNode := DBTreeView1.DBNodes[0];
See Also