RoutingSlip Object

Document
RoutingSlip

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

Parent Objects | Document Object

Child Objects