Skip to main content
You are viewing help content for a version that is no longer maintained/updated.

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