Note
Access to this page requires authorization. You can try signing in or changing directories.
Access to this page requires authorization. You can try changing directories.
Describes ways to continue from a breakpoint.
Syntax
typedef enum tagBREAKRESUME_ACTION {
BREAKRESUMEACTION_ABORT,
BREAKRESUMEACTION_CONTINUE,
BREAKRESUMEACTION_STEP_INTO,
BREAKRESUMEACTION_STEP_OVER,
BREAKRESUMEACTION_STEP_OUT,
BREAKRESUMEACTION_IGNORE,
BREAKRESUMEACTION_STEP_DOCUMENT,
} BREAKRESUMEACTION;
Members
Member | Description |
---|---|
BREAKRESUMEACTION_ABORT | Aborts the application. |
BREAKRESUMEACTION_CONTINUE | Continues running. |
BREAKRESUMEACTION_STEP_INTO | Steps into a procedure. |
BREAKRESUMEACTION_STEP_OVER | Steps over a procedure. |
BREAKRESUMEACTION_STEP_OUT | Steps out of the current procedure. |
BREAKRESUMEACTION_IGNORE | Continues running with state. |
BREAKRESUMEACTION_STEP_DOCUMENT | Steps to the next document. |
See also
Active Script Debugger Constants, Enumerations, and Structures