Search
DiagramBase.CellTextEdited Event
See Also
 





Raised when the user edits the text of a table’s cell.

Namespace: MindFusion.Diagramming
Package: MindFusion.Diagramming

 Syntax

C#  Copy Code

public event EventHandler<EditCellTextEventArgs> CellTextEdited

Visual Basic  Copy Code

Public Event CellTextEdited As EventHandler(Of EditCellTextEventArgs)

 Event Data

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

Member name

Description

Table

The TableNode that contains the edited cell.

Cell

The Cell whose text has been edited.

NewText

The cell's new text.

OldText

The cell's old text.

Column

Index of the column containing the edited cell.

Row

Index of the row containing the edited cell.

 See Also