Raised when the user clicks a table’s cell.
Namespace: MindFusion.Diagramming
Assembly: MindFusion.Diagramming
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 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 NodeClicked event for the TableNode after CellClicked, unless you set the PreventNodeEvent argument to true.
MindFusion.Diagramming Developer's Guide | © 2024 MindFusion |