Document.Routed Property

Word Developer Reference

True if the specified document has been routed to the next recipient. Read-only Boolean.

Syntax

expression.Routed

expression   A variable that represents a Document object.

Remarks

The Routed property returns False if the document has yet to be routed (for example, if the document has no routing slip, or if a routing slip was just created). Use the Route method to route a document that has a routing slip.

Example

This example routes the active document if it has not yet been routed.

Visual Basic for Applications
  If ActiveDocument.Routed = False Then ActiveDocument.Route