Template.FullName Property

Word Developer Reference

Specifies the name of a template, including the drive or Web path. Read-only String.

Syntax

expression.FullName

expression   Required. A variable that represents a Template object.

Remarks

Using this property is equivalent to using the Path, PathSeparator, and Name properties in sequence.

Example

This example displays the path and file name of the template attached to the active document.

Visual Basic for Applications
  Sub TemplateName()
    MsgBox ActiveDocument.AttachedTemplate.FullName
End Sub

See Also