scripting:api:script-command-handler:on-execute

onExecute

ICommandHandler::Execute handler (function)

Read-Write Property of type VARIANT

var Action = ScriptCommandHandler.onExecute;
ScriptCommandHandler.onExecute = Action;

==== Visual Basic Script ====

Action = ScriptCommandHandler.onExecute
ScriptCommandHandler.onExecute = Action

==== C++ ====

VARIANT Action;
HRESULT hr = ScriptCommandHandler.get_onExecute(&Action);
hr = ScriptCommandHandler.put_onExecute(Action);

===== See Also ===== IScriptCommandHandler