Document.DisableFeaturesIntroducedAfter 属性 (Word)

禁用的 Microsoft Word 仅在文档中指定的版本之后引入的所有功能。 读/写 WdDisableFeaturesIntroducedAfter

语法

expression. DisableFeaturesIntroducedAfter

表达式是必需的。 一个代表 Document 对象的变量。

备注

设置 DisableFeaturesIntroducedAfter 属性之前的 DisableFeatures 属性必须设置为 True 。 否则为设置才会生效,并且将保持 Word 97 的用于 Windows 的默认设置。

DisableFeaturesIntroducedAfter 属性只影响为其设置属性的文档。 如果您想要设置一个全局选项以禁用所有文档的功能的应用程序,使用

示例

本示例仅对当前文档禁用 Word for Windows 95 的 7.0 和 7.0a 版本之后引入的所有功能。 全局默认设置保持不变。

Sub FeaturesDisable() 
 With ActiveDocument 
 
 'Checks whether features are disabled 
 If .DisableFeatures = True Then 
 
 'If they are, disables all features after Word for Windows 95 
 .DisableFeaturesIntroducedAfter = wd70 
 Else 
 
 'If not, turns on the disable features option and disables 
 'all features introduced after Word for Windows 95 
 .DisableFeatures = True 
 .DisableFeaturesIntroducedAfter = wd70 
 End If 
 End With 
End Sub

另请参阅

Document 对象

支持和反馈

有关于 Office VBA 或本文档的疑问或反馈? 请参阅 Office VBA 支持和反馈,获取有关如何接收支持和提供反馈的指南。