scripting:api:command-handler-listener:on-after-execute

onAfterExecute

After command execute

  • BSTR strCommandName
Appplication.onAfterExecute = function() {
  return pbContinue;
};

==== Visual Basic Script ====

function onAfterExecute()
{
  return pbContinue
}
 
Appplication.onAfterExecute = onAfterExecute

==== C++ ====

HRESULT CCommandHandlerListener::onAfterExecute(BSTR strCommandName, VARIANT_BOOL* pbContinue)
{
 
}

===== See Also ===== ICommandHandlerListener