Document.DisableFeaturesIntroducedAfter 屬性 (Word)
停用特定的 Microsoft Word 文件僅中指定的版本後新增的所有功能。 讀取/寫入 WdDisableFeaturesIntroducedAfter 。
語法
expression. DisableFeaturesIntroducedAfter
需要 expression。 代表 Document 物件的變數。
註解
DisableFeatures 屬性必須設定 DisableFeaturesIntroducedAfter 屬性前設定為 True 。 否則,設定將不會生效和仍然在 Windows Word 97 成預設設定。
DisableFeaturesIntroducedAfter 屬性只會影響文件的屬性設定。 如果您想要設定來停用所有文件的功能的應用程式的全域選項,使用 DisableFeaturesIntroducedAfterByDefault 屬性。
範例
本範例只會為目前文件停用在 Windows 95、第 7.0 版和第 7.0a 版 Word 之後新增的所有功能。 全域的預設設定將維持不變。
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
另請參閱
支援和意見反應
有關於 Office VBA 或這份文件的問題或意見反應嗎? 如需取得支援服務並提供意見反應的相關指導,請參閱 Office VBA 支援與意見反應。