Event delegate method that is used in the INodeBoundsChangeReporter interface. DefaultGraph by default has an implementation of this interface in it's Lookup(Type).

Namespace: yWorks.yFiles.UI.Model
Assembly: yWorks.yFilesNET.Viewer (in yWorks.yFilesNET.Viewer.dll) Version: 4.1.0.1 (4.1.0.1)

Syntax

C#
public delegate void NodeBoundsChanged(
	INode node,
	RectD oldLayout
)
Visual Basic
Public Delegate Sub NodeBoundsChanged ( _
	node As INode, _
	oldLayout As RectD _
)

Parameters

node
Type: yWorks.yFiles.UI.Model..::..INode
The node whose bounds have changed.
oldLayout
Type: yWorks.Canvas.Geometry.Structs..::..RectD
The old bounds.

See Also