Expand Minimize
This topic has not yet been rated - Rate this topic

Document.PrintRevisions Property

Office 2007
True if revision marks are printed with the document. False if revision marks aren't printed (that is, tracked changes are printed as if they'd been accepted). Read/write Boolean.

Syntax

expression.PrintRevisions

expression   A variable that represents a Document object.

Example

This example prints the active document without revision marks.

Visual Basic for Applications
With ActiveDocument
    .PrintRevisions = False
    .PrintOut
End With



Did you find this helpful?
(1500 characters remaining)

Community Additions

ADD
© 2013 Microsoft. All rights reserved.