RoutingSlip Object
Description
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.
Properties
Application property, Creator property, Delivery property, Message property, Parent property, Protect property, Recipients property, ReturnWhenDone property, Status property, Subject property, TrackStatus property.
Methods
AddRecipient method, Reset method.