RemovePersonalInformation 属性

       

如果该属性值为 True,则 Microsoft Word 在保存文档时从备注、修订和“属性”对话框中删除所有的用户信息。Boolean 类型,可读写。

expression.RemovePersonalInformation

expression   必需。该表达式返回“应用于”列表中的一个对象。

示例

本示例设置当前文档,在用户下一次保存文档时删除所有的个人信息。

Sub RemovePersonalInfo()
    ThisDocument.RemovePersonalInformation = True
End Sub