Document.DisableFeatures 属性 (Word)

True 禁用 DisableFeaturesIntroducedAfter 属性中指定的版本之后引入的所有功能。 默认值为 False 。 读/写 Boolean

语法

expressionDisableFeatures

表达 一个代表 Document 对象的变量。

备注

DisableFeatures 属性只影响您设置该属性的文档。 如果您计划共享之间使用早期版本的 Microsoft Word 的用户文档,以便您不会陷入引入到它们的版本中不可用的文档功能,则使用此属性。

示例

本示例对当前文档禁用在 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 支持和反馈,获取有关如何接收支持和提供反馈的指南。