====== onExecute ======
Event of [[:scripting:api:script-short-key-handler:start|IScriptShortKeyHandler]]
===== Description =====
Handler for IShortKeyHandler::onExecute
===== Property type =====
Read-Write Property of type **[[scripting:api:data-type:VARIANT|VARIANT]]**
===== Syntax =====
==== JavaScript ====
var Action = ScriptShortKeyHandler.onExecute;
ScriptShortKeyHandler.onExecute = Action;
==== Visual Basic Script ====
Action = ScriptShortKeyHandler.onExecute
ScriptShortKeyHandler.onExecute = Action
==== C++ ====
VARIANT Action;
HRESULT hr = ScriptShortKeyHandler.get_onExecute(&Action);
hr = ScriptShortKeyHandler.put_onExecute(Action);
===== See Also =====
[[:scripting:api:script-short-key-handler:start|IScriptShortKeyHandler]]
~~NOTOC~~