Note
Access to this page requires authorization. You can try signing in or changing directories.
Access to this page requires authorization. You can try changing directories.
True if space is reserved for a preprinted letterhead in a letter created by the Letter Wizard. Read/write Boolean. The LetterheadSize property controls the size of the reserved letterhead space.
Syntax
expression. Letterhead
expression An expression that returns a 'LetterContent' object.
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.
Dim lcNew As LetterContent
Set lcNew = New LetterContent
With lcNew
.Letterhead = True
.LetterheadLocation = wdLetterTop
.LetterheadSize = InchesToPoints(1)
End With
ActiveDocument.RunLetterWizard _
LetterContent:=lcNew, WizardMode:=True
See also
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.