Search
LayoutNode Delegate
See Also
 





Represents methods that are called by the layout algorithms when the position of a node changes.

Namespace: MindFusion.Diagramming.Layout
Package: MindFusion.Diagramming

 Syntax

C#  Copy Code

public delegate void LayoutNode (
    DiagramNode node,
    RectangleF oldBounds
)

Visual Basic  Copy Code

Public Delegate Sub LayoutNode( _
    node As DiagramNode, _
    oldBounds As RectangleF _
)

 Parameters

node

A reference to the node being laid out.

oldBounds

The bounding rectangle of the node before it was repositioned by the layouting algorithm.

 See Also