Share via


Envelope.ReturnAddress Property

Word Developer Reference

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.

Visual Basic for Applications
  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