DebuggerResumeAction Enum

Definition

Possible actions for the debugger after hitting a breakpoint/step.

public enum class DebuggerResumeAction
public enum DebuggerResumeAction
type DebuggerResumeAction = 
Public Enum DebuggerResumeAction
Inheritance
DebuggerResumeAction

Fields

Continue 0

Continue running until the next breakpoint, or the end of the script.

StepInto 1

Step to next statement, going into functions, scripts, etc.

StepOut 2

Step to next statement, going over functions, scripts, etc.

StepOver 3

Step to next statement after the current function, script, etc.

Stop 4

Stop executing the script.

Applies to