LetterContent.IncludeHeaderFooter Property

Word Developer Reference

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.

Visual Basic for Applications
  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