CtlPanel.TInitEvent

From RAD Studio API Documentation
Jump to: navigation, search

Delphi

TInitEvent = procedure (Sender: TObject; var AppInitOK: Boolean) of object;

C++

typedef void __fastcall (__closure *TInitEvent)(System::TObject* Sender, bool &AppInitOK);

Properties

Type Visibility Source Unit Parent
type
typedef
public
CTLPanel.pas
CtlPanel.hpp
CtlPanel CtlPanel

Description

TInitEvent is the type of the OnInit event handler.

TInitEvent lets you indicate whether the controlling application should finish loading a control panel application.

Sender is the control panel application object.

AppInitOK returns true if the controlling application should continue loading the application, false if the controlling application should abort this application.

See Also