LiveWatchCapabilities Enumeration
Specifies the capabilities and visual flags of a live watch node.
Namespace: VisualGDBExtensibility.LiveWatchAssembly: VisualGDBExtensibility (in VisualGDBExtensibility.dll) Version: 5.6.109.1 (5.6.109.4849)
[FlagsAttribute]
public enum LiveWatchCapabilities
None | 0 | |
CanSuspendExplicitly | 1 |
If set, VisualGDB will display a pause button next to the variable name.
|
CanSetValue | 2 |
If set, VisualGDB will allow editing the variable value via the Live Watch window.
|
CanHaveChildren | 4 |
If set, VisualGDB will allow expanding the variable and will query its children when expanded.
|
CanPlotValue | 8 |
If set, VisualGDB will show the plot button next to the variable value and will allow plotting it.
|
CanSetBreakpoint | 16 |
If set, VisualGDB will show the breakpoint button in the breakpoint column, and will allow setting live watch breakpoints on this variable.
|
SuspendingOperatesRecursively | 32 |
If set, user suspending the parent variable will also suspend all its children. I.e. SetSuspendState(LiveWatchNodeSuspendState) will be called
for each child, with the IsExplicitlySuspended set accordingly.
|
DoNotHighlightChangedValue | 64 |
If set, VisualGDB will not show the variable value in a different color, even if it has not changed.
|