====== onExecute ======
Event of [[:scripting:api:script-command-handler:start|IScriptCommandHandler]]
===== Description =====
[[:scripting:api:command-handler:execute|ICommandHandler::Execute]] handler (function)
===== Property type =====
Read-Write Property of type **[[scripting:api:data-type:VARIANT|VARIANT]]**
===== Syntax =====
==== JavaScript ====
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 =====
[[:scripting:api:script-command-handler:start|IScriptCommandHandler]]
~~NOTOC~~