FMX.Forms.TScreen.FormCount

From RAD Studio API Documentation
Jump to: navigation, search

Delphi

property FormCount: Integer read GetFormCount;

C++

__property int FormCount = {read=GetFormCount, nodefault};

Properties

Type Visibility Source Unit Parent
property public
FMX.Forms.pas
FMX.Forms.hpp
FMX.Forms TScreen

Description

Indicates the number of Normal and StayOnTop forms currently created in the application.

Read FormCount to obtain the number of Normal and StayOnTop forms currently created in the application. These are all forms currently created in the application except of pop-up forms. These forms can be accessed by the Forms property. FormCount can be used with Forms to iterate over all forms in the application.

See Also