Search
EditCellTextEventArgs Constructor
See Also
 





Initializes a new instance of the EditCellTextEventArgs class.

Namespace: MindFusion.Diagramming
Package: MindFusion.Diagramming

 Syntax

C#  Copy Code

public EditCellTextEventArgs (
    TableNode.Cell cell,
    string oldText,
    string newText,
    int column,
    int row
)

Visual Basic  Copy Code

Public New ( _
    cell As TableNode.Cell, _
    oldText As String, _
    newText As String, _
    column As Integer, _
    row As Integer _
)

 Parameters

cell

The TableNode.Cell related to the event.

oldText

The old text of the cell.

newText

The new text of the cell.

column

The zero-based index of the table column related to the event.

row

The zero-based index of the table row related to the event.

 See Also