HasRoutingSlip Property Example
This example removes the routing slip from Sales 1995.doc.
Documents("Sales 1995.doc").HasRoutingSlip = False
If the active document has a routing slip attached to it, this example routes the document.
If ActiveDocument.HasRoutingSlip = True Then
ActiveDocument.Route
End If