Presentation.FullName property (PowerPoint)
Returns the name of the specified add-in or saved presentation, including the path, the current file system separator, and the file name extension. Read-only String.
Syntax
expression.FullName
expression A variable that represents a Presentation object.
Return value
String
Remarks
This property is equivalent to the Path property, followed by the current file system separator, followed by the Name property.
Example
This example displays the path and file name of every available add-in.
For Each a In Application.AddIns
MsgBox a.FullName
Next a
This example displays the path and file name of the active presentation (assuming that the presentation has been saved).
MsgBox Application.ActivePresentation.FullName
See also
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.