Share via


LetterContent.LetterStyle Property

Word Developer Reference

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.

Visual Basic for Applications
  Set aLetterContent = New LetterContent
aLetterContent.LetterStyle = wdFullBlock
ActiveDocument.RunLetterWizard _
    LetterContent:=aLetterContent, WizardMode:=True

See Also