Skip to content

Latest commit

 

History

History
64 lines (34 loc) · 1.24 KB

PowerPoint.Presentation.FullName.md

File metadata and controls

64 lines (34 loc) · 1.24 KB
title keywords f1_keywords api_name ms.assetid ms.date ms.localizationpriority
Presentation.FullName property (PowerPoint)
vbapp10.chm583024
vbapp10.chm583024
PowerPoint.Presentation.FullName
cf6c5687-5dd0-3e71-3aa9-a370534c4117
06/08/2017
medium

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

Presentation Object

[!includeSupport and feedback]