Skip to content

Latest commit

 

History

History
52 lines (30 loc) · 1.08 KB

Word.Application.NormalTemplate.md

File metadata and controls

52 lines (30 loc) · 1.08 KB
title keywords f1_keywords api_name ms.assetid ms.date ms.localizationpriority
Application.NormalTemplate property (Word)
vbawd10.chm158334984
vbawd10.chm158334984
Word.Application.NormalTemplate
0ffd1cfd-78da-5189-2504-bbc04bf5b484
06/08/2017
medium

Application.NormalTemplate property (Word)

Returns a Template object that represents the Normal template.

Syntax

expression. NormalTemplate

expression A variable that represents an Application object.

Example

This example inserts the AutoText entry named "Test" from the Normal template, if this entry is contained in the AutoTextEntries collection.

For Each entry In NormalTemplate.AutoTextEntries 
 If entry.Name = "Test" Then entry.Insert Where:=Selection.Range 
Next entry

This example saves the Normal template if changes have been made to it.

If NormalTemplate.Saved = False Then NormalTemplate.Save

See also

Application Object

[!includeSupport and feedback]