CtlPanel.TInquireEvent

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

TInquireEvent      = procedure (Sender: TObject; var idIcon: Integer; var idName: Integer;
var idInfo: Integer; var lData: LONG_PTR) of object;

C++

typedef void __fastcall (__closure *TInquireEvent)(System::TObject* Sender, int &idIcon, int &idName, int &idInfo, int &lData);

Description

TInquireEvent is the type of the OnInquire event handler.

TInquireEvent lets you provide information about a control panel applet.

Sender is the Applet Module about which you are providing information.

idIcon is the resource ID for the icon of the applet.

idName is the resource ID for the applet's name as it appears in the control panel.

lData is a user-defined value that you want to have passed to the applet's OnActivate event handler.

See Also