Share via


LetterContent.IncludeHeaderFooter Property (Word)

True if the header and footer from the page design template are included in a letter created by the Letter Wizard. Read/write Boolean. Use the PageDesign property to set the name of the template attached to a document created by the Letter Wizard.

Syntax

expression .IncludeHeaderFooter

expression An expression that returns LetterContent object.

Example

This example creates a new LetterContent object, includes the header and footer from the Contemporary Letter template, and then runs the Letter Wizard by using the RunLetterWizard method.

Dim lcNew As LetterContent 
 
Set lcNew = New LetterContent 
 
With lcNew 
 .PageDesign = "C:\Program Files\Microsoft Office\" _ 
 & "Templates\1033\Contemporary Letter.dot" 
 .IncludeHeaderFooter = True 
End With 
 
Documents.Add.RunLetterWizard LetterContent:=lcNew

See Also

Concepts

LetterContent Object

LetterContent Object Members