PageDesign Property

Applies To

LetterContent object.

Description

Returns or sets the name of the template attached to the document created by the Letter Wizard. Read/write String.

See Also

IncludeHeaderFooter property, LetterStyle property.

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.

Set myContent = New LetterContent
With myContent
    .PageDesign = "C:\MSOffice\Templates\Letters & Faxes\Contemporary Letter.dot"
    .IncludeHeaderFooter = True
End With
Documents.Add.RunLetterWizard LetterContent:=myContent