FMX.Forms.TCommonCustomForm.OnActivate

From RAD Studio API Documentation
Jump to: navigation, search

Delphi

property OnActivate: TNotifyEvent read FOnActivate write FOnActivate;

C++

__property System::Classes::TNotifyEvent OnActivate = {read=FOnActivate, write=FOnActivate};

Properties

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

Description

Occurs when the form becomes active.

Use OnActivate to perform special processing when the form receives focus. A form becomes active when the focus is transferred to it (when the user clicks in the form, for example).

See Also