FullName Property

Applies To

Document object, Template object.

Description

Returns the name of the specified document or template, including its path on disk. Read-only String.

Remarks

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

See Also

Name property, Path property, PathSeparator property.

Example

This example displays the path and file name of the active document (assuming that the document has been saved).

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

MsgBox ActiveDocument.AttachedTemplate.FullName