Document.Template Property (Visio)

Returns the name of the template from which the document was created. Read-only.

Version Information

Version Added: Visio 4.0

Syntax

expression .Template

expression A variable that represents a Document object.

Return Value

String

Remarks

If the document is based on no template, the Template property returns an empty string (''").

Example

This Microsoft Visual Basic for Applications (VBA) macro shows how to use the Template property to get the name of the template from which the document was created.

 
Public Sub Template_Example() 
 
 Dim strTemplateName As String 
 
 strTemplateName = ThisDocument.Template 
 
 'Verify that the proper string was returned. 
 Debug.Print strTemplateName 
 
End Sub