SalutationType Property

Microsoft Word Visual Basic

WdSalutationType can be one of these WdSalutationType constants.
wdSalutationBusiness
wdSalutationFormal
wdSalutationInformal
wdSalutationOther

expression.SalutationType

expression    Required. An expression that returns a LetterContent object.

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