DefaultFaceUp Property

Microsoft Word Visual Basic

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

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