Documents (Document)![]() |
本对象代表文档的传送名单。可用传送名单通过电子邮件系统发送文档。
可用 RoutingSlip 属性返回 RoutingSlip 对象。下例依次将活动文档发送给指定收件人。
ActiveDocument.HasRoutingSlip = True
With ActiveDocument.RoutingSlip
.Subject = "Project Documentation"
.AddRecipient "Don Funk"
.AddRecipient "Dave Edson"
.Delivery = wdOneAfterAnother
End With
ActiveDocument.Route
当该文档的 HasRoutingSlip 属性未被设置为 True 时,不能使用 RoutingSlip 对象(此时它不存在)。