| 
Document
TrackChanges Property
  | 
 Gets or sets a value that determines whether changes are tracked 
when the document is edited in applications like Microsoft Word or WPS.
 Namespace:
 Spire.Doc
 Assembly:
Spire.Doc (in Spire.Doc.dll) Version: 13.2.3.0 (13.2.3.3046)
 Syntax
Syntax
 
 
public bool TrackChanges { get; set; }
 
Public Property TrackChanges As Boolean
	Get
	Set
 
public:
property bool TrackChanges {
	bool get ();
	void set (bool value);
}
 
member TrackChanges : bool with get, set
 
 
 
Property Value
 
 Type:
 
Boolean
 
 
 Remarks
Remarks
 
 
 The property only controls whether the track changes is enabled in applications 
like Microsoft Word or WPS. It has no effect on changes to the document that you 
make programmatically via Spire.Doc.If you want to programmatically track changes 
as they are made by Spire.Doc, please use the StartTrackRevisions method.
 See Also
See Also