FMX.Types.IItemsContainer.GetItem

From RAD Studio API Documentation
Jump to: navigation, search

Delphi

function GetItem(const AIndex: Integer): TFmxObject;

C++

virtual TFmxObject* __fastcall GetItem(const int AIndex) = 0 ;

Properties

Type Visibility Source Unit Parent
function public
FMX.Types.pas
FMX.Types.hpp
FMX.Types IItemsContainer

Description

Returns a specified item in the container.

Implement GetItem to get a certain object in the container.

AIndex specifies the index of the object to be returned.

GetItem is implemented by controls such as menus, TTabControl, TTreeViewItem.

See Also