CtlPanel.TAppletModule.OnNewInquire

From RAD Studio API Documentation
Jump to: navigation, search

Delphi

property OnNewInquire: TNewInquireEvent read FOnNewInquire write FOnNewInquire;

C++

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

Properties

Type Visibility Source Unit Parent
event published
CTLPanel.pas
CtlPanel.hpp
CtlPanel TAppletModule

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