IncludeHeaderFooter Property

Microsoft Word Visual Basic

property to set the name of the template attached to a document created by the Letter Wizard.

expression.IncludeHeaderFooter

expression    Required. 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