CtlPanel.TInitEvent

From RAD Studio API Documentation
Jump to: navigation, search

[–] Properties
Type:
type
typedef
Visibility: public
Source:
CTLPanel.pas
CtlPanel.hpp
Unit: CtlPanel
Parent: CtlPanel

Delphi

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

C++

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

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