Skip to content

Latest commit

 

History

History
55 lines (33 loc) · 1014 Bytes

Word.Document.TrackRevisions.md

File metadata and controls

55 lines (33 loc) · 1014 Bytes
title keywords f1_keywords api_name ms.assetid ms.date ms.localizationpriority
Document.TrackRevisions property (Word)
vbawd10.chm158007610
vbawd10.chm158007610
Word.Document.TrackRevisions
c6ff8462-805d-2494-cebb-ace6fe536f40
06/08/2017
medium

Document.TrackRevisions property (Word)

True if changes are tracked in the specified document. Read/write Boolean.

Syntax

expression. TrackRevisions

expression A variable that represents a Document object.

Example

This example sets the active document so that it tracks changes and makes them visible on the screen.

With ActiveDocument 
 .TrackRevisions = True 
 .ShowRevisions = True 
End With

This example inserts text if change tracking isn't enabled.

If ActiveDocument.TrackRevisions = False Then 
 Selection.InsertBefore "new text" 
End If

See also

Document Object

[!includeSupport and feedback]