Specifies the name of a template, including the drive or Web path. Read-only String.
expression .FullName
expression Required. A variable that represents a Template object.
Using this property is equivalent to using the Path, PathSeparator, and Name properties in sequence.
This example displays the path and file name of the template attached to the active document.
Sub TemplateName() MsgBox ActiveDocument.AttachedTemplate.FullName End Sub