debugger.DebugTool.RestoreState
|
This function restores the state of the debug tool to the one saved in the file. [RH850]
[Specification format]
debugger.DebugTool.RestoreState(fileName)
|
[Argument(s)]
|
|
fileName
|
Specify the full path of the file to restore the state of the debug tool.
|
[Return value]
If the file was restored successfully: True
If there was an error when restoring the file: False
[Detailed description]
- | This function restores the state of the debug tool to the one saved in the file.
The state of the debug tool that can be restored is only in the file saved by the debugger.DebugTool.SaveState function. |
[Example of use]
>>>debugger.DebugTool.SaveState("C:/test/debugtoolstate.log")
True
>>>debugger.DebugTool.RestoreState("C:/test/debugtoolstate.log")
True
>>>
|