RoutingSlip Object

         Properties         Methods        

Documents collection (Document object)
RoutingSlip object

Represents the routing slip associated with a document. You use a routing slip to send a document through an electronic mail system.

Using the RoutingSlip Object

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

Remarks

The RoutingSlip object cannot be used (doesn't exist) unless the HasRoutingSlip property for the document is set to True.