Presentation.RemovePersonalInformation property (PowerPoint)
Determines whether Microsoft PowerPoint should remove all user information from comments and revisions upon saving a presentation. Read/write.
expression. RemovePersonalInformation
expression A variable that represents a Presentation object.
MsoTriState
The value of the RemovePersonalInformation property can be one of these MsoTriState constants.
Constant | Description |
---|---|
msoFalse | Comments, revisions, and personal information remain in the presentation. |
msoTrue | Removes comments, revisions, and personal information when saving presentation. |
This example sets the active presentation to remove personal information the next time the user saves it.
Sub RemovePersonalInfo()
ActivePresentation.RemovePersonalInformation = msoTrue
End Sub
Have questions or feedback about Office VBA or this documentation? Please see Office VBA support and feedback for guidance about the ways you can receive support and provide feedback.