TrackStatus 属性

       

如果该属性值为 True,则每次转发传送的文档时,都向原来的发件人返回一条邮件。传送前该属性为 Boolean 类型,可读写;传送过程中,为 Boolean 类型,只读。

expression.TrackStatus

expression   必需。该表达式返回一个 RoutingSlip 对象。

示例

本示例为活动文档添加一张传送名单,添加两位收件人,启用状态跟踪,并传送该文档。

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