Search
DiagramLink.OnModify Method
See Also
 





Invoked when the user moves any control point of the link.

Namespace: MindFusion.Diagramming
Assembly: MindFusion.Diagramming

 Syntax

C#  Copy Code

protected virtual void OnModify (
    Point mousePosition,
    int adjustmentHandle
)

Visual Basic  Copy Code

Protected Overridable Sub OnModify( _
    mousePosition As Point, _
    adjustmentHandle As Integer _
)

 Parameters

mousePosition

Specifies the mouse position.

adjustmentHandle

Specifies the adjustment handle used to modify the link.

 Remarks

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

 See Also