Vcl.Forms.TCustomForm.OnShow

From RAD Studio API Documentation
Jump to: navigation, search

Delphi

property OnShow: TNotifyEvent read FOnShow write FOnShow stored IsForm;

C++

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

Properties

Type Visibility Source Unit Parent
event protected
Vcl.Forms.pas
Vcl.Forms.hpp
Vcl.Forms TCustomForm

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

Code Examples