Document.CopyStylesFromTemplate method (Word)

Copies styles from the specified template to a document.

Syntax

expression. CopyStylesFromTemplate( _Template_ )

expression Required. A variable that represents a Document object.

Parameters

Name Required/Optional Data type Description
Template Required String The template file name.

Remarks

When styles are copied from a template to a document, like-named styles in the document are redefined to match the style descriptions in the template. Unique styles from the template are copied to the document. Unique styles in the document remain intact.

Example

This example copies the styles from the active document's template to the document.

ActiveDocument.CopyStylesFromTemplate _ 
 Template:=ActiveDocument.AttachedTemplate.FullName

This example copies the styles from the Sales96.dot template to Sales.doc.

Documents("Sales.doc").CopyStylesFromTemplate _ 
 Template:="C:\MSOffice\Templates\Sales96.dot"

See also

Document Object

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.