LabelSmartTags 属性

       

如果为 True,Microsoft Word 使用智能标记信息标记文档中的文本。Boolean 类型,可读写。

expression.LabelSmartTags

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

示例

本示例在文档中关闭智能标记功能。

Sub MarkSmartTags()
    Application.Options.LabelSmartTags = False
End Sub