FMX.Forms.TForm.OnHide

From RAD Studio API Documentation
Jump to: navigation, search

Delphi

property OnHide: TNotifyEvent read FOnHide write FOnHide;

C++

__property OnHide;

Properties

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

Description

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

FMX.Forms.TForm.OnHide inherits from FMX.Forms.TCommonCustomForm.OnHide. All content below this line refers to FMX.Forms.TCommonCustomForm.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