Lưu ý
Cần có ủy quyền mới truy nhập được vào trang này. Bạn có thể thử đăng nhập hoặc thay đổi thư mục.
Cần có ủy quyền mới truy nhập được vào trang này. Bạn có thể thử thay đổi thư mục.
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
Support and feedback
Have questions or feedback about Office VBA or this documentation? Please see Office VBA support and feedback for guidance about the ways you can receive support and provide feedback.