HasRoutingSlip Property

Microsoft Word Visual Basic

True if the specified document has a routing slip attached to it. Setting this property to True creates a routing slip; setting it to False deletes the routing slip. Read/write Boolean.

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