DocumentBase.HasRoutingSlip 属性
获取或设置一个值,用于指示文档是否附加了传送名单。
命名空间: Microsoft.Office.Tools.Word
程序集: Microsoft.Office.Tools.Word.v4.0.Utilities(在 Microsoft.Office.Tools.Word.v4.0.Utilities.dll 中)
语法
声明
Public Property HasRoutingSlip As Boolean
public bool HasRoutingSlip { get; set; }
属性值
类型:System.Boolean
如果文档附加了传送名单,则为 true,否则为 false。
备注
将此属性设置为 true 会创建传送名单;将它设置为 false 会删除传送名单。
示例
下面的代码示例为文档创建一个传送名单并填写主题和收件人。 该代码然后将文档传送给收件人。 若要使用此示例,请从文档级项目内的 ThisDocument 类中运行此示例。
Private Sub DocumentRoute()
Me.HasRoutingSlip = True
Me.RoutingSlip.Subject = "Your feedback is needed."
Me.RoutingSlip.AddRecipient("someone@example.com")
Me.Route()
End Sub
private void DocumentRoute()
{
this.HasRoutingSlip = true;
this.RoutingSlip.Subject = "Your feedback is needed.";
this.RoutingSlip.AddRecipient("someone@example.com");
this.Route();
}
.NET Framework 安全性
- 对直接调用方的完全信任。此成员不能由部分信任的代码使用。有关更多信息,请参见通过部分受信任的代码使用库。