This function disables a conditional trace.
[Specification format]
debugger.Trace.Disable(traceNumber = "")
|
[Argument(s)]
|
|
traceNumber
|
Specify the trace event number to disable.
|
[Return value]
If a trace setting was disabled successfully: True
If there was an error when disabling a trace setting: False
[Detailed description]
- | This function disables the timer of the trace event specified by traceNumber. |
- | If traceNumber is not specified, then traces of all trace event numbers will be disabled. |
[Example of use]
>>>debugger.Trace.Disable(1)
True
>>>
|