Document.SetLetterContent Method

Word Developer Reference

Inserts the contents of the specified LetterContent object into a document.

Syntax

expression.SetLetterContent(LetterContent)

expression   Required. A variable that represents a Document object.

Parameters

Name Required/Optional Data Type Description
LetterContent Required LetterContent The that includes the various elements of the letter.

Return Value

Remarks

This method is similar to the RunLetterWizard method except that it doesn't display the Letter Wizard dialog box. The method adds, deletes, or restyles letter elements in the specified document based on the contents of the LetterContent object.

Example

This example retrieves the Letter Wizard elements from the active document, changes the attention line text, and then uses the SetLetterContent method to update the active document to reflect the changes.

Visual Basic for Applications
  Set myLetterContent = ActiveDocument.GetLetterContent
myLetterContent.AttentionLine = "Greetings"
ActiveDocument.SetLetterContent LetterContent:=myLetterContent

See Also