Raised when the user double-clicks a link.
Namespace: MindFusion.Diagramming.Wpf
Assembly: MindFusion.Diagramming.Wpf
SyntaxC#
Copy Code
|
|---|
public event EventHandler<LinkEventArgs> LinkDoubleClicked |
Visual Basic
Copy Code
|
|---|
Public Event LinkDoubleClicked As EventHandler(Of LinkEventArgs) |
Event DataLinkDoubleClicked event handlers receive an argument of type LinkEventArgs. The following LinkEventArgs members provide information relevant to the event:
Member name | Description |
|---|---|
The DiagramLink that has been double-clicked. | |
The mouse button that has been pressed by the user. | |
A Point specifying the mouse cursor position. |
See Also