DocumentBase.SmartTags 属性
获取一个 SmartTags 对象,该对象表示文档中的智能标记。 此类型或成员只适合在 2007 Microsoft Office system 项目中使用。Office 2010 中已弃用智能标记。
.
命名空间: Microsoft.Office.Tools.Word
程序集: Microsoft.Office.Tools.Word.v4.0.Utilities(在 Microsoft.Office.Tools.Word.v4.0.Utilities.dll 中)
语法
声明
Public ReadOnly Property SmartTags As SmartTags
public SmartTags SmartTags { get; }
属性值
类型:Microsoft.Office.Interop.Word.SmartTags
一个 SmartTags 对象,表示文档中的智能标记。
示例
下面的代码示例向文档中的第一个智能标记添加属性。 此示例假定文档中有智能标记。 若要使用此示例,请从文档级项目内的 ThisDocument 类中运行此示例。
Private Sub DocumentSmartTags()
Dim index As Object = 1
If Me.SmartTags.Count >= 1 Then
Me.SmartTags.Item(index).Properties.Add("President", "true")
End If
End Sub
private void DocumentSmartTags()
{
object index = 1;
if (this.SmartTags.Count >= 1)
{
this.SmartTags.get_Item(ref index)
.Properties.Add("President", "true");
}
}
.NET Framework 安全性
- 对直接调用方的完全信任。此成员不能由部分信任的代码使用。有关更多信息,请参见通过部分受信任的代码使用库。