Gets a collection of all changes made in the main text of the document. The property's value is an object of the type TrackedChangeCollection.

Introduced: X16.

Syntax

public TrackedChangeCollection TrackedChanges { get; }
Public ReadOnly Property TrackedChanges() As TrackedChangeCollection

Examples

The following examples describes how to use the 'TXTextControl.MainText.TrackedChanges' property by storing it in a variable of the type 'TXTextControl.TrackedChangeCollection'.

TXTextControl.MainText mainText = textControl1.TextParts.GetMainText();
//...
TXTextControl.TrackedChangeCollection myMainTextTrackedChangeColl = mainText.TrackedChanges;
//...
Dim mainText As TXTextControl.MainText = TextControl1.TextParts.GetMainText()
'...
Dim myMainTextTrackedChangeColl As TXTextControl.TrackedChangeCollection = mainText.TrackedChanges
'...

Limitations

Read only.