FMX.Forms.TCommonCustomForm.OnDeactivate

From RAD Studio API Documentation
Jump to: navigation, search

Delphi

property OnDeactivate: TNotifyEvent read FOnDeactivate write FOnDeactivate;

C++

__property System::Classes::TNotifyEvent OnDeactivate = {read=FOnDeactivate, write=FOnDeactivate};

Properties

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

Description

Occurs when the form loses focus.

Use OnDeactivate to perform special processing when the active form becomes inactive and another form in the same application becomes the active one. If activation goes to another application, this event is not triggered.

See Also