Search
ContainerNode.OnBoundsChanged Method
See Also
 






DiagramNode.OnBoundsChanged override.

Namespace: MindFusion.Diagramming
Assembly: MindFusion.Diagramming

 Syntax

C#  Copy Code

public override void OnBoundsChanged (
    Rect oldRect,
    Rect newRect,
    bool updateLinks,
    bool updateChildren,
    bool updateStorage
)

Visual Basic  Copy Code

Public Overrides Sub OnBoundsChanged( _
    oldRect As Rect, _
    newRect As Rect, _
    updateLinks As Boolean, _
    updateChildren As Boolean, _
    updateStorage As Boolean _
)

 Parameters

oldRect

Specifies the old position of the node.

newRect

Specifies the new position of the node.

updateLinks

Specifies whether the position of links connected to this node should be updated too.

updateChildren

Specifies whether position of child nodes should be updated too.

updateStorage

true to update the stored value, otherwise false.

 See Also