Envelope.Address property (Word)
Returns the envelope delivery address as a Range object. Read-only.
Syntax
expression.Address
expression Required. A variable that represents an 'Envelope' object.
Example
This example displays the delivery address if an envelope has been added to the document; otherwise, it displays a message.
On Error GoTo errhandler
addr = ActiveDocument.Envelope.Address.Text
MsgBox Prompt:=addr, Title:="Delivery Address"
errhandler:
If Err = 5852 Then MsgBox "Insert an envelope into the document"
See also
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.