Search
DiagramNode.Move Method
See Also
 





Moves the node to the specified location.

Namespace: MindFusion.Diagramming
Package: MindFusion.Diagramming

 Syntax

C#  Copy Code

public void Move (
    float x,
    float y
)

Visual Basic  Copy Code

Public Sub Move( _
    x As Single, _
    y As Single _
)

 Parameters

x
A float value specifying the new X-coordinate of node's location.
y
A float value specifying the new Y-coordinate of node's location.

 Remarks

This method moves a node to the specified position, without changing the node's size. Moving a node also updates the control points coordinates of all links connected to the node.

 See Also