FMX.Forms.TCommonCustomForm.OnShow

From RAD Studio API Documentation
Jump to: navigation, search

Delphi

property OnShow: TNotifyEvent read FOnShow write FOnShow;

C++

__property System::Classes::TNotifyEvent OnShow = {read=FOnShow, write=FOnShow};

Properties

Type Visibility Source Unit Parent
event public
FMX.Forms.pas
FMX.Forms.hpp
FMX.Forms TCommonCustomForm

Description

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