Route 方法

       

根据指定文档的当前传送名单来传送文档。

说明

如果文档没有传送名单,则会导致错误。通过 HasRoutingSlip 属性可以判定文档是否有附加的传送名单。传送一篇文档时,该文档的 Routed 属性将设置为 True

expression.Route

expression   必需。该表达式返回一个 Document 对象。

示例

如果活动文档有附加传送名单,则传送该文档。

If ActiveDocument.HasRoutingSlip = True Then ActiveDocument.Route

本示例依次将 Feedback.doc 传送给两名收件人。

Documents("Feedback.doc").HasRoutingSlip = True
With Documents("Feedback.doc").RoutingSlip
    .Subject = "Your feedback please..."
    .AddRecipient Recipient:="Tad Orman"
    .AddRecipient Recipient:="David Simpson"
    .Delivery = wdOneAfterAnother
End With
Documents("Status.doc").Route