RemovePersonalInformation Property

Microsoft Word Visual Basic

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