Search
DiagramNode.OnModify Method
See Also
 





Invoked when the user moves or resizes this node.

Namespace: MindFusion.Diagramming
Package: MindFusion.Diagramming

 Syntax

C#  Copy Code

protected virtual void OnModify (
    PointF mousePosition,
    AdjustmentHandles adjustmentHandle
)

Visual Basic  Copy Code

Protected Overridable Sub OnModify( _
    mousePosition As PointF, _
    adjustmentHandle As AdjustmentHandles _
)

 Parameters

mousePosition

Specifies the mouse position.

adjustmentHandle

Specifies the adjustment handle used to modify the node.

 Remarks

Implement this method in a custom node class if you need to detect modifications done by the user without handling events of the Diagram class.

 See Also