====== onOutputCommand ======
Event of [[:scripting:api:script-output-pane:start|IScriptOutputPane]]
===== Description =====
onCommand handler (function)
===== Property type =====
Read-Write Property of type **[[scripting:api:data-type:VARIANT|VARIANT]]**
===== Syntax =====
==== JavaScript ====
var Action = ScriptOutputPane.onOutputCommand;
ScriptOutputPane.onOutputCommand = Action;
==== Visual Basic Script ====
Action = ScriptOutputPane.onOutputCommand
ScriptOutputPane.onOutputCommand = Action
==== C++ ====
VARIANT Action;
HRESULT hr = ScriptOutputPane.get_onOutputCommand(&Action);
hr = ScriptOutputPane.put_onOutputCommand(Action);
===== See Also =====
[[:scripting:api:script-output-pane:start|IScriptOutputPane]]
~~NOTOC~~