Share via


LetterContent.Closing Property

Word Developer Reference

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.

Visual Basic for Applications
  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.

Visual Basic for Applications
  Dim lcCurrent As LetterContent

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

See Also