LetterContent.Closing property (Word)

Returns or sets the closing text for a letter created by the Letter Wizard (for example, "Sincerely yours"). Read/write String.

Syntax

expression. Closing

expression A variable that represents a 'LetterContent' object.

Example

This example displays the closing text from the active document.

MsgBox ActiveDocument.GetLetterContent.Closing

This example retrieves letter elements from the active document, changes the closing text by setting the Closing property, and then uses the SetLetterContent method to update the document to reflect the changes.

Dim lcCurrent As LetterContent 
 
Set lcCurrent = ActiveDocument.GetLetterContent 
lcCurrent.Closing = "Sincerely yours," 
ActiveDocument.SetLetterContent LetterContent:=lcCurrent

See also

LetterContent 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.