Skip to content

Files

Latest commit

 

History

History
54 lines (29 loc) · 1.38 KB

PowerPoint.Presentation.Save.md

File metadata and controls

54 lines (29 loc) · 1.38 KB
title keywords f1_keywords api_name ms.assetid ms.date ms.localizationpriority
Presentation.Save method (PowerPoint)
vbapp10.chm583035
vbapp10.chm583035
PowerPoint.Presentation.Save
6d1251bb-27f3-0a80-bc2f-d385e2b3e3ec
06/08/2017
medium

Presentation.Save method (PowerPoint)

Saves the specified presentation.

Syntax

expression.Save

expression A variable that represents a Presentation object.

Remarks

Use the SaveAs method to save a presentation that has not been previously saved. To determine whether a presentation has been saved, test for a nonempty value for the FullName or Path property. If a document that has the same name as the specified presentation already exists on disk, that document will be overwritten. No warning message is displayed.

To mark the presentation as saved without writing it to disk, set the Saved property to True.

Example

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

With Application.ActivePresentation

    If Not .Saved And .Path <> "" Then .Save

End With

See also

Presentation Object

[!includeSupport and feedback]