Share via


Presentation.FullName Property

PowerPoint Developer Reference

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.

Visual Basic for Applications
  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).

Visual Basic for Applications
  MsgBox Application.ActivePresentation.FullName

See Also