AppCommandTracingΒΆ
AppCommandTracing enables or disables tracing of menu commands.
- bool = AppCommandTracing(bOn)
Return Value
If the function succeeds, the return value is TRUE (1); otherwise it is FALSE (0).
Parameters
- bOn
If bOn is TRUE (1) enables command tracing.
Example
The following command enables command tracing:
AppCommandTracing(TRUE);
Choose a menu command, e.g. Tools=>Options.
The log message Command: 32776
will be displayed in th event viewer.
The following call will invoke the command Tools=>Options:
AppSendCommandMessage(32776)
History
Version |
Description |
---|---|
R2013.2 |
Documented. |
id-1167226