FMX.Forms.TForm.Visible

From RAD Studio API Documentation
Jump to: navigation, search

Delphi

property Visible: Boolean read GetVisible write SetVisible default 0;

C++

__property Visible = {default=0};

Properties

Type Visibility Source Unit Parent
property published
FMX.Forms.pas
FMX.Forms.hpp
FMX.Forms TForm

Description

Indicates whether the form is visible.

FMX.Forms.TForm.Visible inherits from FMX.Forms.TCommonCustomForm.Visible. All content below this line refers to FMX.Forms.TCommonCustomForm.Visible.

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.

See Also