FMX.Forms.TScreen.PopupForms

From RAD Studio API Documentation
Jump to: navigation, search

Delphi

property PopupForms[Index: Integer]: TCommonCustomForm read GetPopupForms;

C++

__property TCommonCustomForm* PopupForms[int Index] = {read=GetPopupForms};

Properties

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

Description

Lists all pop-up forms currently created in the application.

Use PopupForms to access a pop-up form by Index. The value of Index is a number in the range from zero (the first form) through PopupFormCount - 1. PopupFormCount can be used with PopupForms to iterate over all pop-up forms in an application.

Notice that Forms contains all Normal and StayOnTop forms currently created in the application.

See Also