FMX.Forms.TForm.OnShow

From RAD Studio API Documentation
Jump to: navigation, search

Delphi

property OnShow: TNotifyEvent read FOnShow write FOnShow;

C++

__property OnShow;

Properties

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

Description

Occurs when the form is shown (that is, when its Visible property is set to True).

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

Occurs when the form is shown (that is, when its Visible property is set to True).

Use OnShow to perform special processing when the form is shown (that is, when the form's Visible property is set to True).

See Also