TrackStatus Property

Microsoft Word Visual Basic

TrackStatus Property

       

True if a mail message is sent back to the original sender each time the routed document is forwarded. Read/write Boolean before routing begins; read-only Boolean while routing is in progress.

expression.TrackStatus

expression   Required. An expression that returns a RoutingSlip object.

Example

This example adds a routing slip to the active document, adds two recipients, enables status tracking, and routes the document.

ActiveDocument.HasRoutingSlip = True
With ActiveDocument.RoutingSlip
    .AddRecipient Recipient:="James Allard"
    .AddRecipient Recipient:="Rich Andrews"
    .TrackStatus = True
    .Parent.Route
End With