Envelope.DefaultOmitReturnAddress property (Word)

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.

ActiveDocument.Envelope.DefaultOmitReturnAddress = True

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

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

Envelope Object

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.