FMX.TabControl.TTabControl.Tabs

From RAD Studio API Documentation
Jump to: navigation, search

Delphi

property Tabs[AIndex: Integer]: TTabItem read GetTabItem;

C++

__property TTabItem* Tabs[int AIndex] = {read=GetTabItem};

Properties

Type Visibility Source Unit Parent
property public
FMX.TabControl.pas
FMX.TabControl.hpp
FMX.TabControl TTabControl

Description

Provides a way to programmatically access the tabs, based on their index.

Use the Tabs property to access the individual tabs of this tab control component, based on their index. The individual tabs that Tabs can provide access to are actually TTabItem objects. Specifying an index that is out of range (where range is from -1 to number of tabs present) raises an exception.

See Also