Envelope.Options (Word)

Displays the Envelope Options dialog box.

The Options method works only if the document is the main document of an envelope mail merge.


Sub EnvelopeOptions() 
 If ActiveDocument.MailMerge.MainDocumentType = wdEnvelopes Then 
 ActiveDocument.Envelope.Options 
 End If 
End Sub