Delivery Property

WdRoutingSlipDelivery

WdRoutingSlipDelivery can be one of these WdRoutingSlipDelivery constants.
wdAllAtOnce
wdOneAfterAnother

expression.Delivery

expression Required. An expression that returns one of the objects in the Applies To list.

Example

This example routes the document named "Status.doc" to two recipients, one after the other.

Documents("Status.doc").HasRoutingSlip = True
With Documents("Status.doc").RoutingSlip
    .Subject = "Status Doc"
    .AddRecipient Recipient:="Don Funk"
    .AddRecipient Recipient:="Eric Maffei"
    .Delivery = wdOneAfterAnother
End With
Documents("Status.doc").Route

Applies to | RoutingSlip Object

See Also | AddRecipient Method | ReturnWhenDone Property | Route Method | TrackStatus Property