Closing Property

Applies To

LetterContent object.

Description

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

See Also

Salutation property.

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.

Set myLetterContent = ActiveDocument.GetLetterContent
myLetterContent.Closing = "Sincerely yours,"
ActiveDocument.SetLetterContent LetterContent:=myLetterContent