Search
FlowChart.BoxTextEdited Event
See Also
 



Occurs when the text of a box is edited in-place by the user.

 Syntax

VB6  Copy Code

Public Event BoxTextEdited

 Event Data

Parameters

Type

Description

box

[input] reference to Box object

The box whose text was edited.

oldText

[input] text

The text of the box before the modification.

newText

[input] text

The new text of the box.

Dispatch ID: 69

 Remarks

Raised just after in-place editing of the text of a box is completed. To enable in-place editing set the InplaceEditAllowed property to true.

 See Also