Saved Property

Applies To

Presentation object.

Description

True if no changes have been made to a presentation since it was last saved. Read/write Long.

Remarks

If the Saved property of a modified presentation is set to True, the user won't be prompted to save changes when closing the presentation, and all changes made to it since it was last saved will be lost.

Example

This example saves the active presentation if it's been changed since the last time it was saved.

With Application.ActivePresentation
    If Not .Saved And .Path <> "" Then .Save
End With