FMX.Header.THeader.Items

From RAD Studio API Documentation
Jump to: navigation, search

Delphi

property Items[Index: Integer]: THeaderItem read GetHeaderItem;

C++

__property THeaderItem* Items[int Index] = {read=GetHeaderItem};

Properties

Type Visibility Source Unit Parent
property public
FMX.Header.pas
FMX.Header.hpp
FMX.Header THeader

Description

Provides access to each item held by this header.

Use the Items property to access individual items held by this header. Index specifies the index of the item as it appears in the header. For instance, if you want to access the first item to display a message with its text, then you have to use something like:

  ShowMessage(Header1.Items[0].Text);

See Also