Reset Method

Applies To

RoutingSlip object.

Description

Resets the routing slip so that a new routing can be initiated with the same slip (using the same recipient list and delivery information). The routing must be completed before you use this method. Using this method at other times causes an error.

Syntax

expression.Reset

expression Required. An expression that returns a RoutingSlip object.

Example

This example resets the routing slip for Book1.xls if routing has been completed.

With Workbooks("Book1.xls").RoutingSlip
    If .Status = xlRoutingComplete Then
        .Reset
    Else
        MsgBox "Cannot reset routing; not yet complete"
    End If
End With