返回或设置信封的默认送纸方向。WdEnvelopeOrientation,可读写。
| WdEnvelopeOrientation 可以是下列 WdEnvelopeOrientation 常量之一: |
| wdCenterClockwise |
| wdCenterLandscape |
| wdCenterPortrait |
| wdLeftClockwise |
| wdLeftLandscape |
| wdLeftPortrait |
| wdRightClockwise |
| wdRightLandscape |
| wdRightPortrait |
expression.DefaultOrientation
expression 必需。该表达式返回“应用于”列表中的一个对象。
本示例将送纸方式设置为正面向上、居中和纵向。
With ActiveDocument.Envelope
.DefaultFaceUp = True
.DefaultOrientation = wdCenterPortrait
MsgBox "Feed envelopes centered, face up, " _
& "in portrait orientation"
End With