Applies To
Workbook Object.
Description
This example creates a routing slip for BOOK1.XLS and then sends the workbook to three recipients, one after another.
Accessor
Returns a RoutingSlip object that represents the routing slip for the workbook. Reading this property if there is no routing slip causes an error (check the HasRoutingSlip property first). Read-only.
Example
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