Envelope.ReturnAddress property (Word)
Returns a Range object that represents the envelope return address.
Syntax
expression. ReturnAddress
expression Required. A variable that represents an 'Envelope' object.
Remarks
An error occurs if you use this property before adding an envelope to the document.
Example
This example displays the return address if an envelope has been added to the active document; otherwise, a message box is displayed.
On Error GoTo errhandler
addr = ActiveDocument.Envelope.ReturnAddress.Text
MsgBox Prompt:=addr, Title:="Return Address"
errhandler:
If Err = 5852 Then MsgBox _
"The active document doesn't include an envelope"
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.