ILiveWatchNodeSetSuspendState Method

Applies the suspend state of the node (i.e. whether it's visible in the list, plotted, expanded, or any of its children are visible).

Definition

Namespace: VisualGDBExtensibility.LiveWatch
Assembly: VisualGDBExtensibility (in VisualGDBExtensibility.dll) Version: 5.6.109.1 (5.6.109.4849)
C#
void SetSuspendState(
	LiveWatchNodeSuspendState state
)

Parameters

state  LiveWatchNodeSuspendState
A structure summarizing which parts of the node are active.

Remarks

This method is always called from the GUI thread when one of the parameters affecting suspension state are changed. The node should use it to suspend/resume any of the low-level live variables owned by it. This avoids spending time on reading the values of the variables for the nodes that are not currently visible or plotted.

See Also