Show pageOld revisionsBacklinksAdd to bookBack to top This page is read only. You can view the source, but not change it. Ask your administrator if you think this is wrong. ====== onAfterExecute ====== Event of [[:scripting:api:command-handler-listener:start|ICommandHandlerListener]] ===== Description ===== After command execute ===== Parameters ===== * [[scripting:api:data-type:BSTR|BSTR]] **strCommandName** ==== Return Value ==== * [[scripting:api:data-type:VARIANT_BOOL|VARIANT_BOOL]] **pbContinue** ===== Syntax ===== ==== JavaScript ==== <code javascript> Appplication.onAfterExecute = function() { return pbContinue; }; </code>==== Visual Basic Script ==== <code vb> function onAfterExecute() { return pbContinue } Appplication.onAfterExecute = onAfterExecute </code>==== C++ ==== <code cpp> HRESULT CCommandHandlerListener::onAfterExecute(BSTR strCommandName, VARIANT_BOOL* pbContinue) { } </code>===== See Also ===== [[:scripting:api:command-handler-listener:start|ICommandHandlerListener]] ~~NOTOC~~