Envelope.DefaultFaceUp property (Word)

True if envelopes are fed face up by default. Read/write Boolean.

Syntax

expression. DefaultFaceUp

expression A variable that represents a 'Envelope' object.

Example

This example sets envelopes to be fed face up by default. The UpdateDocument method updates the envelope in the active document.

With ActiveDocument.Envelope 
 .DefaultFaceUp = True 
 .DefaultOrientation = wdCenterPortrait 
 .UpdateDocument 
End With

This example displays a message telling the user how to feed the envelopes into the printer based on the default setting.

If ActiveDocument.Envelope.DefaultFaceUp = True Then 
 MsgBox "Feed envelopes face up." 
Else 
 MsgBox "Feed envelopes face down." 
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.