Everything

debugger.Run


This function resets and then run the program.

[Specification format]

debugger.Run(runOption = RunOption.Normal)

[Argument(s)]

Argument

Description

runOption

Specify an option.

The options that can be specified are shown below.

Type

Description

RunOption.WaitBreak

Wait until the program stops.

RunOption.Normal

Breakpoints enabled; do not wait until the program stops (default).

[Return value]

None

[Detailed description]

-

This function resets and then run the program.
If "RunOption.WaitBreak" is specified in runOption, then it will wait until the program stops.

[Example of use]

>>>debugger.Run()
>>>debugger.Run(RunOption.WaitBreak)