Applies To
RoutingSlip Object.
Description
Returns or sets the delivery method used when routing (one of xlOneAfterAnother or xlAllAtOnce). Read-write before routing starts, read-only once routing is in progress.
Example
This example sends BOOK1.XLS to three recipients, one after the other.
Workbooks("BOOK1.XLS").HasRoutingSlip = True With Workbooks("BOOK1.XLS").RoutingSlip .Delivery = xlOneAfterAnother .Recipients = Array("Adam Bendel", "Jean Selva", "Bernard Gabor") .Subject = "Here is BOOK1.XLS" .Message = "Here is the workbook. What do you think?" End With Workbooks("BOOK1.XLS").Route