全部显示

RemovePersonalInformation 属性

       

属性值为 MsoTrue 时,Microsoft PowerPoint 将在保存演示文稿时删除批注、修订和“属性”对话框中的所有用户信息。可读写。MsoTriState 类型。

expression.RemovePersonalInformation

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

示例

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

Sub RemovePersonalInfo()
    ActivePresentation.RemovePersonalInformation = msoTrue
End Sub