FMX.Forms.TCommonCustomForm.Visible
Delphi
property Visible: Boolean read GetVisible write SetVisible default False;
C++
__property bool Visible = {read=GetVisible, write=SetVisible, default=0};
Properties
Type | Visibility | Source | Unit | Parent |
---|---|---|---|---|
property | public | FMX.Forms.pas FMX.Forms.hpp |
FMX.Forms | TCommonCustomForm |
Description
Indicates whether the form is visible.
Use Visible to determine whether the form is visible.
If Visible is True, the form is visible unless it is completely obscured by other forms. If Visible is False, the form is not visible.
The Show and ShowModal methods set Visible to True and bring the form to the front of all open windows.