FMX.Types.TFormStyle
Delphi
TFormStyle = (Normal, Popup, StayOnTop);
C++
enum class DECLSPEC_DENUM TFormStyle : unsigned int { Normal, Popup, StayOnTop };
Properties
Type | Visibility | Source | Unit | Parent |
---|---|---|---|---|
enum | public | FMX.Types.pas FMX.Types.hpp |
FMX.Types | FMX.Types |
Description
TFormStyle describes the form style.
TFormStyle defines the following values:
Value | Meaning |
---|---|
Normal |
Usual form. Such form can have the active state and support the z-order. |
Popup |
Such form cannot be active. All forms of this type belong to the PopupForms list. |
StayOnTop |
This form remains on top of the desktop and of other forms in the application, except any other form that also has FormStyle set to StayOnTop. If one StayOnTop form launches another, neither form will consistently remain on top. |