Closing Property

Microsoft Word Visual Basic

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

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