Delivery 属性

       

返回或设置传递文档时的传送方式。WdRoutingSlipDelivery,可读写。 在传送开始以前为 Long 类型,可读写;在进行传送时为 Long 类型,只读。

expression.Delivery

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

示例

本示例将名为“Status.doc”的文档依次传送给两名收件人。

Documents("Status.doc").HasRoutingSlip = True
With Documents("Status.doc").RoutingSlip
    .Subject = "Status Doc"
    .AddRecipient Recipient:="Don Funk"
    .AddRecipient Recipient:="Eric Maffei"
    .Delivery = wdOneAfterAnother
End With
Documents("Status.doc").Route