Vcl.Forms.TForm.OnHide

From RAD Studio API Documentation
Jump to: navigation, search

Delphi

property OnHide: TNotifyEvent read FOnHide write FOnHide stored IsForm;

C++

__property OnHide;

Properties

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

Description

Occurs when the form is hidden (that is, when its Visible property is set to false).

Vcl.Forms.TForm.OnHide inherits from Vcl.Forms.TCustomForm.OnHide. All content below this line refers to Vcl.Forms.TCustomForm.OnHide.

Occurs when the form is hidden (that is, when its Visible property is set to false).

Use OnHide to perform special processing when the form is hidden (that is, when the form's Visible property is set to false).

See Also

Code Examples