Application.Path property (PowerPoint)

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

Syntax

expression.Path

expression A variable that represents an Application object.

Return value

String

Remarks

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

Application 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.