onCommand

Event of IOutputPaneEvents

Description

Called when tool started

Parameters

Return Value

Syntax

JavaScript

Appplication.onCommand = function(strCommand) {
  return pbResult;
};

==== Visual Basic Script ====

function onCommand(strCommand)
{
  return pbResult
}
 
Appplication.onCommand = onCommand

==== C++ ====

HRESULT COutputPaneEvents::onCommand(IOutputPane* pPane, BSTR strCommand, VARIANT_BOOL* pbResult)
{
 
}

===== See Also ===== IOutputPaneEvents