Occurs when the text of a box is edited in-place by the user.
SyntaxVB6
Copy Code
|
|---|
Public Event BoxTextEdited |
Event DataParameters | 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
RemarksRaised 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