CtlPanel.TNewInquireEvent

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

TNewInquireEvent   = procedure (Sender: TObject; var lData: LONG_PTR; var hIcon: HICON;
var AppletName: string; var AppletInfo: string) of object;

C++

typedef void __fastcall (__closure *TNewInquireEvent)(System::TObject* Sender, int &lData, HICON &hIcon, System::UnicodeString &AppletName, System::UnicodeString &AppletInfo);

Description

TNewInquireEvent is the type of the OnNewInquire event handler.

TNewInquireEvent lets you provide information about a control panel applet.

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

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

hIcon is the handle to the icon for the applet.

AppletName is the applet's name as it appears in the control panel.

AppletInfo is the help string that describes the applet in the control panel.

See Also