LetterContent.EnclosureNumber property (Word)

Returns or sets the number of enclosures for a letter created by the Letter Wizard. Read/write String.

Syntax

expression. EnclosureNumber

expression A variable that represents a 'LetterContent' object.

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.

Dim lcTemp As LetterContent 
 
Set lcTemp = ActiveDocument.GetLetterContent 
lcTemp.EnclosureNumber = "5" 
ActiveDocument.SetLetterContent LetterContent:=lcTemp

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.