Search
DiagramBase.LinkModified Event
See Also
 





Raised when the user moves any control point of a link.

Namespace: MindFusion.Diagramming
Assembly: MindFusion.Diagramming

 Syntax

C#  Copy Code

public event EventHandler<LinkEventArgs> LinkModified

Visual Basic  Copy Code

Public Event LinkModified As EventHandler(Of LinkEventArgs)

 Event Data

LinkModified event handlers receive an argument of type LinkEventArgs. The following LinkEventArgs members provide information relevant to the event:

Member name

Description

Link

The DiagramLink that has been modified.

MousePosition

A PointF specifying the mouse cursor position.

AdjustmentHandle

Index of the adjustment handle that has been moved.

 See Also