MindFusion.Wpf Pack Programmer's Guide
DiagramBase.CellTextEditing Event
See Also
 





A validation event that can prevent users from editing the text of a table's cell.

Namespace: MindFusion.Diagramming.Wpf
Assembly: MindFusion.Diagramming.Wpf

 Syntax

C#  Copy Code

public event EventHandler<CellValidationEventArgs> CellTextEditing

Visual Basic  Copy Code

Public Event CellTextEditing As EventHandler(Of CellValidationEventArgs)

 Event Data

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

Member name

Description

Table

The TableNode containing the cell that the user is trying to edit.

Cell

The Cell that the user is trying to edit.

Column

Index of the column containing the cell.

Row

Index of the row containing the cell.

Cancel

Set this property to true to prevent the user from editing the cell's text.

 See Also

DiagramBase Members
DiagramBase Class
MindFusion.Diagramming.Wpf Namespace
CellTextEdited Event
ActionRedone Event