Skip to content

Latest commit

 

History

History
61 lines (34 loc) · 1.36 KB

PowerPoint.Presentation.RemovePersonalInformation.md

File metadata and controls

61 lines (34 loc) · 1.36 KB
title keywords f1_keywords api_name ms.assetid ms.date ms.localizationpriority
Presentation.RemovePersonalInformation property (PowerPoint)
vbapp10.chm583068
vbapp10.chm583068
PowerPoint.Presentation.RemovePersonalInformation
beb422cc-23c5-5de5-ed6f-0fc71315daec
06/08/2017
medium

Presentation.RemovePersonalInformation property (PowerPoint)

Determines whether Microsoft PowerPoint should remove all user information from comments and revisions upon saving a presentation. Read/write.

Syntax

expression. RemovePersonalInformation

expression A variable that represents a Presentation object.

Return value

MsoTriState

Remarks

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.

Example

This example sets the active presentation to remove personal information the next time the user saves it.

Sub RemovePersonalInfo()

    ActivePresentation.RemovePersonalInformation = msoTrue

End Sub

See also

Presentation Object

[!includeSupport and feedback]