Presentation.Close method (PowerPoint)

Closes the specified presentation.

Syntax

expression.Close

expression A variable that represents a Presentation object.

Remarks

When you use this method, PowerPoint will close an open presentation without prompting the user to save their work. To prevent the loss of work, use the Save method or the SaveAs method before you use the Close method.

Example

This example closes Pres1.ppt without saving changes.

With Application.Presentations("pres1.ppt")

    .Saved = True

    .Close

End With

This example closes all open presentations.

With Application.Presentations

    For i = .Count To 1 Step -1

        .Item(i).Close

    Next

End With

See also

Presentation Object

Support and feedback

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.