RAD Studio VCL Reference
ContentsIndex
PreviousUpNext
WebAdapt.TActionExecuteHandledEvent Type

TActionExecuteHandledEvent is the type for event handlers on adapter action objects that can handle the execution of the action.

Pascal
TActionExecuteHandledEvent = procedure (Sender: TObject; Params: TStrings; var Handled: Boolean) of object;
C++
(Sender: TObject; Params: TStrings; var Handled: Boolean) ( TActionExecuteHandledEvent)();

TActionExecuteHandledEvent is the type for event handlers of an adapter action that can perform some or all of the action's tasks when the action executes and prevent the default execution. 

Sender is the object that represents the adapter action. 

Params lists the parameters for the action, in 'Name=Value' format. 

Handled returns true if the event handler fully handled the response. If Handled returns false, the adapter action object proceeds with its default response. 

 

Copyright(C) 2009 Embarcadero Technologies, Inc. All Rights Reserved.
What do you think about this topic? Send feedback!