RemovePersonalInformation Property

Microsoft Word Visual Basic

RemovePersonalInformation Property

       

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

expression.RemovePersonalInformation

expression   Required. An expression that returns one of the objects in the Applies To list.

Example

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

Sub RemovePersonalInfo()
    ThisDocument.RemovePersonalInformation = True
End Sub