This function checks the execution status of the user program.
[Specification format]
[Argument(s)]
None
[Return value]
If the user program is running: True
If the user program is not running: False
[Detailed description]
- | This function checks the execution status of the user program. |
[Example of use]
>>>if debugger.IsRunning() == True :
... print "OK"
...
True
OK
>>>
|