LetterheadLocation Property
Applies To
LetterContent object.
Description
Returns or sets the location of the preprinted letterhead in a letter created by the Letter Wizard. Can be one of the following WdLetterheadLocation constants: wdLetterBottom, wdLetterLeft, wdLetterRight, or wdLetterTop. Read/write Long.
See Also
LetterheadSize property.
Example
This example creates a new LetterContent object, reserves an inch of space at the top of the page for a preprinted letterhead, and then runs the Letter Wizard by using the RunLetterWizard method.
Set aLetterContent = New LetterContent
With aLetterContent
.Letterhead = True
.LetterheadLocation = wdLetterTop
.LetterheadSize = InchesToPoints(1)
End With
ActiveDocument.RunLetterWizard LetterContent:=aLetterContent