Document.Template property (Visio)
Returns the name of the template from which the document was created. Read-only.
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
Support and feedback
Have questions or feedback about Office VBA or this documentation? Please see Office VBA support and feedback for guidance about the ways you can receive support and provide feedback.