Search
DiagramBase.CellDoubleClicked Event
See Also
 





Raised when the user double-clicks a table’s cell.

Namespace: MindFusion.Diagramming
Package: MindFusion.Diagramming

 Syntax

C#  Copy Code

public event EventHandler<CellEventArgs> CellDoubleClicked

Visual Basic  Copy Code

Public Event CellDoubleClicked As EventHandler(Of CellEventArgs)

 Event Data

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

Member name

Description

Table

The TableNode that contains the clicked cell.

Cell

The Cell that has been double-clicked.

MouseButton

The mouse button that has been pressed by the user.

MousePosition

A PointF specifying the mouse cursor position.

Column

Index of the column containing the clicked cell.

Row

Index of the row containing the clicked cell.

 Remarks

The control also raises NodeDoubleClicked event for the TableNode after CellDoubleClicked, unless you set the PreventNodeEvent argument to true.

 See Also