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

LetterContent 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.