Vcl.Forms.TCustomForm.Activate

From RAD Studio API Documentation
Jump to: navigation, search

Delphi

procedure Activate; dynamic;

C++

DYNAMIC void __fastcall Activate();

Properties

Type Visibility Source Unit Parent
procedure
function
protected
Vcl.Forms.pas
Vcl.Forms.hpp
Vcl.Forms TCustomForm

Description

Activation event dispatcher.

Activation is the event dispatcher for form activations.

The form component calls Activate in response to the CM_ACTIVATE message, sent when a form gets the focus either because of a change in active windows within an application or because of the application becoming active. As defined in TCustomForm, Activate simply calls the OnActivate event handler.

See Also