Presentation.Path property (PowerPoint)

Returns a String that represents the path to the specified Presentation object. Read-only.

Syntax

expression.Path

expression A variable that represents a Presentation object.

Return value

String

Remarks

If you use this property to return a path for a presentation that has not been saved, it returns an empty string.

The path doesn't include the final backslash () or the name of the specified object. Use the Name property of the Presentation object to return the file name without the path, and use the FullName property to return the file name and the path together.

Example

This example saves the active presentation in the same folder as PowerPoint.

With Application

    fName = .Path & "\test presentation"

    ActivePresentation.SaveAs fName

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.