Template.OpenAsDocument Method
Word Developer Reference |
Opens the specified template as a document and returns a Document object.
Syntax
expression.OpenAsDocument
expression Required. A variable that represents a Template object.
Return Value
Document
Remarks
Opening a template as a document allows the user to edit the contents of the template. This may be necessary if a property or method (the Styles property, for example) isn't available from the Template object.
Example
This example opens the template attached to the active document, displays a message box if the template contains anything more than a single paragraph mark, and then closes the template.
Visual Basic for Applications |
---|
|
This example saves a copy of the Normal template as "Backup.dot."
Visual Basic for Applications |
---|
|
This example changes the formatting of the Heading 1 style in the template attached to the active document. The UpdateStyles method updates the styles in the active document.
Visual Basic for Applications |
---|
|
See Also