Raised when the user double-clicks a table’s cell.
Namespace: MindFusion.Diagramming
Assembly: MindFusion.Diagramming
C# Copy Code |
---|
public event EventHandler<CellEventArgs> CellDoubleClicked |
Visual Basic Copy Code |
---|
Public Event CellDoubleClicked As EventHandler(Of CellEventArgs) |
CellDoubleClicked event handlers receive an argument of type CellEventArgs. The following CellEventArgs members provide information relevant to the event:
Member name | Description |
---|---|
The TableNode that contains the clicked cell. | |
The Cell that has been double-clicked. | |
The mouse button that has been pressed by the user. | |
A PointF specifying the mouse cursor position. | |
Index of the column containing the clicked cell. | |
Index of the row containing the clicked cell. |
The control also raises NodeDoubleClicked event for the TableNode after CellDoubleClicked, unless you set the PreventNodeEvent argument to true.
MindFusion.Diagramming Developer's Guide | © 2024 MindFusion |