TXTextControl.CannotTrackChange Event

Determines how to handle a change of the document that cannot be added to the list of tracked changes. Complex table layout changes, such as deleting a table column or merging table cells cannot be tracked. The default handling shows a MessageBox asking the end-user whether the change of the document should be performed. Using the event parameters the default handling can be changed.

Introduced: 26.0.

Syntax

CannotTrackChange(Cancel, Handled)
Parameter Description
Cancel

When this parameter is set to true, which is the default value, the operation is canceled. When this parameter is set to false, the document is changed.

Handled

A subscriber can set this parameter to true to indicate that he has handled the event. In this case the default handling is suppressed. The default handling shows a MessageBox asking the end-user whether the change of the document should be performed.

Data Types

Cancel: Boolean
Handled: Boolean

See Also