LiveWatchVariableStateFlags Enumeration

Specifies various flags associated with a live variable node value

Definition

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

Members

None0 
CanRefresh1 If specified, VisualGDB will show a refresh button near the node, allowing to manually reload the node's children. Typically used in conjunction with ChildrenOutdated for nodes where re-querying children should not be done automatically (e.g. frequently changing pointers).
ChildrenOutdated2 If specified, VisualGDB will apply the strikethrough effect to the children of this node, indicating that they are outdated. Typically used in conjunction with CanRefresh.

See Also