Delivery Property

Applies To

RoutingSlip object.

Description

Returns or sets the delivery method used for routing the document. Can be either of the following WdRoutingSlipDelivery constants: wdAllAtOnce or wdOneAfterAnother. Read/write Long before routing starts; read-only Long while routing is in progress.

See Also

AddRecipient method, ReturnWhenDone property, Route method, TrackStatus property.

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