CtlPanel.TAppletModule.OnNewInquire

From RAD Studio API Documentation
Jump to: navigation, search

[–] Properties
Type: event
Visibility: published
Source:
CTLPanel.pas
CtlPanel.hpp
Unit: CtlPanel
Parent: TAppletModule

Delphi

property OnNewInquire: TNewInquireEvent read FOnNewInquire write FOnNewInquire;

C++

__property TNewInquireEvent OnNewInquire = {read=FOnNewInquire, write=FOnNewInquire};

Description

Occurs when the AppletModule is queried for its information.

OnNewInquire occurs when the controlling application requests each applet's information such as its Icon, Caption, Help, and Data Values. This event populates a structure with the values that are changed in this event (such as hIcon, AppletName, AppletInfo, and lData). HIcon defaults to the handle of the AppletIcon property. AppletName defaults to Caption, AppletInfo defaults to Help, and lData defaults to the Data property of the AppletModule.

See Also