Note
Access to this page requires authorization. You can try signing in or changing directories.
Access to this page requires authorization. You can try changing directories.
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
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.