EnclosureNumber Property Example

This example displays the number of enclosures specified in the active document.

MsgBox ActiveDocument.GetLetterContent.EnclosureNumber

This example retrieves letter elements from the active document, changes the number of enclosures by setting the EnclosureNumber property, and then uses the SetLetterContent method to update the active document to reflect the changes.

Set myLetterContent = ActiveDocument.GetLetterContent
myLetterContent.EnclosureNumber = "5"
ActiveDocument.SetLetterContent LetterContent:=myLetterContent