Applies To
AddIn Object, Workbook Object.
Description
Returns the name of the object, including its path on disk, as a string. Read-only.
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 filename of every add-in.
For Each a In AddIns MsgBox a.FullName Next a
This example displays the path and filename of the active workbook (assuming that the workbook has been saved).
MsgBox ActiveWorkbook.FullName