FMX.Forms.TCommonCustomForm.OnHide

From RAD Studio API Documentation
Jump to: navigation, search

Delphi

property OnHide: TNotifyEvent read FOnHide write FOnHide;

C++

__property System::Classes::TNotifyEvent OnHide = {read=FOnHide, write=FOnHide};

Properties

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

Description

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