LiveWatchCapabilities Enumeration

Specifies the capabilities and visual flags of a live watch node.

Definition

Namespace: VisualGDBExtensibility.LiveWatch
Assembly: VisualGDBExtensibility (in VisualGDBExtensibility.dll) Version: 5.6.109.1 (5.6.109.4849)
C#
[FlagsAttribute]
public enum LiveWatchCapabilities

Members

None0 
CanSuspendExplicitly1 If set, VisualGDB will display a pause button next to the variable name.
CanSetValue2 If set, VisualGDB will allow editing the variable value via the Live Watch window.
CanHaveChildren4 If set, VisualGDB will allow expanding the variable and will query its children when expanded.
CanPlotValue8 If set, VisualGDB will show the plot button next to the variable value and will allow plotting it.
CanSetBreakpoint16 If set, VisualGDB will show the breakpoint button in the breakpoint column, and will allow setting live watch breakpoints on this variable.
SuspendingOperatesRecursively32 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.
DoNotHighlightChangedValue64 If set, VisualGDB will not show the variable value in a different color, even if it has not changed.

See Also