onBeforeExecute
Event of ICommandHandlerListener
Description
Before command execute
Parameters
- BSTR strCommandName
Return Value
- VARIANT_BOOL pbContinue
Syntax
JavaScript
Appplication.onBeforeExecute = function() { return pbContinue; };
==== Visual Basic Script ====
function onBeforeExecute()
{
return pbContinue
}
Appplication.onBeforeExecute = onBeforeExecute
==== C++ ====
HRESULT CCommandHandlerListener::onBeforeExecute(BSTR strCommandName, VARIANT_BOOL* pbContinue) { }
===== See Also ===== ICommandHandlerListener