Search
DiagramBase.NodeDoubleClicked Event
See Also
 





Raised when the user double-clicks a node.

Namespace: MindFusion.Diagramming
Assembly: MindFusion.Diagramming

 Syntax

C#  Copy Code

public event EventHandler<NodeEventArgs> NodeDoubleClicked

Visual Basic  Copy Code

Public Event NodeDoubleClicked As EventHandler(Of NodeEventArgs)

 Event Data

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

Member name

Description

Node

The DiagramNode that has been double-clicked.

MouseButton

The mouse button that has been pressed by the user.

MousePosition

A PointF specifying the mouse cursor position.

 See Also