Vcl.ComCtrls.TTreeNode.Item

From RAD Studio API Documentation
Jump to: navigation, search

Delphi

property Item[Index: Integer]: TTreeNode read GetItem write SetItem; default;

C++

__property TTreeNode* Item[int Index] = {read=GetItem, write=SetItem/*, default*/};

Properties

Type Visibility Source Unit Parent
property public
Vcl.ComCtrls.pas
Vcl.ComCtrls.hpp
Vcl.ComCtrls TTreeNode

Description

Provides access to a child node by its position in the list of child nodes.

Use Item to access a child node based on its Index property. The first child node has an index of 0, the second an index of 1, and so on.

See Also