Raised when the user clicks a table's cell.
Namespace: MindFusion.Diagramming.Wpf
Assembly: MindFusion.Diagramming.Wpf
C# Copy Code |
---|
public event EventHandler<CellEventArgs> CellClicked |
Visual Basic Copy Code |
---|
Public Event CellClicked As EventHandler(Of CellEventArgs) |
CellClicked 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 clicked. | |
The mouse button that has been pressed by the user. | |
A Point specifying the mouse cursor position. | |
Index of the column containing the clicked cell. | |
Index of the row containing the clicked cell. |
If there is some handler attached to this event, NodeClicked won't be raised for the table that contains the clicked cell, but only CellClicked.
WpfDiagram Programmer's Guide | © 2024 MindFusion |