DefaultOrientation Property
Applies To
Envelope object.
Description
Returns or sets the default orientation for feeding envelopes. Can be one of the following WdEnvelopeOrientation constants: wdCenterClockwise, wdCenterLandscape, wdCenterPortrait, wdLeftClockwise, wdLeftLandscape, wdLeftPortrait, wdRightClockwise, wdRightLandscape, or wdRightPortrait. Read/write Long
See Also
DefaultFaceUp property.
Example
This example sets envelopes to be fed face up, centered, and in portrait orientation.
With ActiveDocument.Envelope
.DefaultFaceUp = True
.DefaultOrientation = wdCenterPortrait
MsgBox "Feed envelopes centered, face up, in portrait orientation"
End With