LetterStyle Property

Applies To

LetterContent object.

Description

Returns or sets the layout of a letter created by the Letter Wizard. Can be one of the following WdLetterStyle constants: wdFullBlock, wdModifiedBlock, or wdSemiBlock. Read/write Long.

See Also

GetLetterContent method, PageDesign property, RunLetterWizard method, SetLetterContent method.

Example

This example creates a new LetterContent object, selects a letter style, and then runs the Letter Wizard by using the RunLetterWizard method.

Set aLetterContent = New LetterContent
aLetterContent.LetterStyle = wdFullBlock
ActiveDocument.RunLetterWizard LetterContent:=aLetterContent, _
    WizardMode:=True