dbgDebugMode Enum
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
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
Name | Value | Description |
---|---|---|
dbgDesignMode | 1 | Design mode specifies changes in code editing. |
dbgBreakMode | 2 | Break mode specifies that the debugger is running and has stopped at a break point. |
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.