Document.SetLetterContent method (Word)

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.

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.

Set myLetterContent = ActiveDocument.GetLetterContent 
myLetterContent.AttentionLine = "Greetings" 
ActiveDocument.SetLetterContent LetterContent:=myLetterContent

See also

Document Object

Support and feedback

Have questions or feedback about Office VBA or this documentation? Please see Office VBA support and feedback for guidance about the ways you can receive support and provide feedback.