Document.RemovePersonalInformation Property

Word Developer Reference

True if Microsoft Word removes all user information from comments, revisions, and the Properties dialog box upon saving a document. Read/write Boolean.

Syntax

expression.RemovePersonalInformation

expression   A variable that represents a Document object.

Example

This example sets the current document to remove personal information from the document the next time the user saves it.

Visual Basic for Applications
  Sub RemovePersonalInfo()
    ActiveDocument.RemovePersonalInformation = True
End Sub

See Also