Limitations
Read only.
Gets a collection of all changes made in the main text of the document. The property's value is an object of the type Tracked
Introduced: X16.
public TrackedChangeCollection TrackedChanges { get; }
Public ReadOnly Property TrackedChanges() As TrackedChangeCollection
The following examples describes how to use the 'TXText
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
'...
Read only.