FMX.TreeView.TTreeViewItem.operator []

From RAD Studio API Documentation
Jump to: navigation, search

C++

TTreeViewItem* operator[](const int Index) { return this->Items[Index]; }

Properties

Type Visibility Source Unit Parent
function public FMX.TreeView.hpp FMX.TreeView TTreeViewItem

Description

Returns the child item at the specified position.

The [] operator returns the child item with the position indicated by Index in the children list. The [] operator property provides access only to first-level children of the current item.

The [] operator assumes a base index of 0.

See Also