CEIP.hookCommandAfter Member
Internal.
Syntax
object.hookCommandAfter(e);
Arguments
Argument | Summary |
---|---|
e |
Returns
Remarks
See Also
Source Code
function ceip_hookcommandafter(e)
{
try
{
if (this.isCommandIgnored(e))
return;
this.commandNest--;
}
catch (ex)
{
this.logEvent({type: "logger", event: "error",
method: "hookCommandAfter",
error: formatException(ex)});
}
}