====== onOutputCommand ======
Event of [[:scripting:api:script-application:start|IScriptApplication]]
===== Description =====
Handler for [[:scripting:api:output-pane-events:on-command|IOutputPaneEvents::onCommand]]
===== Property type =====
Read-Write Property of type **[[scripting:api:data-type:VARIANT|VARIANT]]**
===== Syntax =====
==== JavaScript ====
var Action = ScriptApplication.onOutputCommand;
ScriptApplication.onOutputCommand = Action;
==== Visual Basic Script ====
Action = ScriptApplication.onOutputCommand
ScriptApplication.onOutputCommand = Action
==== C++ ====
VARIANT Action;
HRESULT hr = ScriptApplication.get_onOutputCommand(&Action);
hr = ScriptApplication.put_onOutputCommand(Action);
===== See Also =====
[[:scripting:api:script-application:start|IScriptApplication]]
~~NOTOC~~