Envelope.DefaultOmitReturnAddress Property

Word Developer Reference

True if the return address is omitted from envelopes by default. Read/write Boolean.

Syntax

expression.DefaultOmitReturnAddress

expression   A variable that represents a Envelope object.

Example

This example omits return addresses from new envelopes by default.

Visual Basic for Applications
  ActiveDocument.Envelope.DefaultOmitReturnAddress = True

This example displays the return address status in a message box.

Visual Basic for Applications
  If ActiveDocument.Envelope.DefaultOmitReturnAddress = True Then
    MsgBox "A return address is not included by default."
Else
    MsgBox "A return address is included by default."
End If

See Also