DefaultOrientation 属性

       

返回或设置信封的默认送纸方向。WdEnvelopeOrientation,可读写。

expression.DefaultOrientation

expression   必需。该表达式返回“应用于”列表中的一个对象。

示例

本示例将送纸方式设置为正面向上、居中和纵向。

With ActiveDocument.Envelope
    .DefaultFaceUp = True
    .DefaultOrientation = wdCenterPortrait
    MsgBox "Feed envelopes centered, face up, " _
        & "in portrait orientation"
End With