LetterContent.LetterStyle Property (Word)
Returns or sets the layout of a letter created by the Letter Wizard. Read/write WdLetterStyle.
Syntax
expression .LetterStyle
expression Required. A variable that represents a LetterContent object.
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