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