Documents (Document)![]() |
Represents the routing slip associated with a document. You use a routing slip to send a document through an electronic mail system.
Use the RoutingSlip property to return the RoutingSlip object. The following example routes the active document to the specified recipients, one after another.
ActiveDocument.HasRoutingSlip = True
With ActiveDocument.RoutingSlip
.Subject = "Project Documentation"
.AddRecipient "Don Funk"
.AddRecipient "Dave Edson"
.Delivery = wdOneAfterAnother
End With
ActiveDocument.Route
The RoutingSlip object cannot be used (doesn't exist) unless the HasRoutingSlip property for the document is set to True.