dbgDebugMode Enum

Definition

The current state of the debugger within the development environment. dbgDebugMode is used by the CurrentMode property of the Debugger object.

public enum class dbgDebugMode
public enum class dbgDebugMode
enum dbgDebugMode
[System.Runtime.InteropServices.Guid("E940C60A-C68F-11D2-8AD6-00C04F79E479")]
public enum dbgDebugMode
[<System.Runtime.InteropServices.Guid("E940C60A-C68F-11D2-8AD6-00C04F79E479")>]
type dbgDebugMode = 
Public Enum dbgDebugMode
Inheritance
dbgDebugMode
Attributes

Fields

dbgBreakMode 2

Break mode specifies that the debugger is running and has stopped at a break point.

dbgDesignMode 1

Design mode specifies changes in code editing.

dbgRunMode 3

Run mode specifies that the application being debugged is running.

Remarks

The debugger can be in either Design mode, Break mode, or Run mode.

Applies to