DiagramLite Programmer's Guide
DiagramBase.CellClicked Event
See Also
 





Raised when the user clicks a table's cell.

Namespace: MindFusion.Diagramming
Assembly: MindFusion.Diagramming.Silverlight

 Syntax

C#  Copy Code

public event EventHandler<CellEventArgs> CellClicked

Visual Basic  Copy Code

Public Event CellClicked As EventHandler(Of CellEventArgs)

 Event Data

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

Member name

Description

Cell

The Cell that has been clicked.

Column

Index of the column containing the clicked cell.

MousePosition

A Point specifying the mouse cursor position.

Row

Index of the row containing the clicked cell.

Table

The TableNode that contains the clicked cell.

 Remarks

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.

 See Also

DiagramBase Members
DiagramBase Class
MindFusion.Diagramming Namespace
NodeClicked Event
CellDoubleClicked Event