SalutationType Property

Applies To

LetterContent object.

Description

Returns or sets type of salutation style for a letter created by the Letter Wizard. Can be one of the following WdSalutationType constants: wdSalutationBusiness, wdSalutationFormat, wdSalutationInformal, or wdSalutationOther. Read/write Long.

See Also

Salutation property.

Example

This example creates a new LetterContent object, sets several properties (including the salutation text), and then runs the Letter Wizard by using the RunLetterWizard method.

Set myContent = New LetterContent
myContent.SalutationType = wdSalutationBusiness
Documents.Add.RunLetterWizard LetterContent:=myContent, WizardMode:=True