Search
FlowChart.CellTextEdited Event
See Also
 



Occurs when the text of a table's cell is edited in-place by the user.

 Syntax

VB6  Copy Code

Public Event CellTextEdited

 Event Data

Parameter

Type

Description

table

[input] reference to Table object

The table whose cell was edited.

row

[input] long

The row where the edited cell is located.

col

[input] long

The column where the edited cell is located.

oldText

[input] string

The text of the cell before the modification.

newText

[input] string

The new text of the cell.

Dispatch ID: 71

 Remarks

Raised just after in-place editing of the text of table's cell is completed. To enable in-place editing set the InplaceEditAllowed property to true.

 See Also