共用方式為


Options.DisableFeaturesIntroducedAfterbyDefault 屬性 (Word)

最早出現在之後的所有功能會停都用所有文件的指定的版本。 讀取/寫入 WdDisableFeaturesIntroducedAfter

語法

expression. DisableFeaturesIntroducedAfterbyDefault

需要 expression。 代表 Options 物件的變數。

註解

DisableFeaturesByDefault 屬性必須設定 DisableFeaturesIntroducedAfterByDefault 屬性前設定為 True 。 否則,設定將不會生效和仍然在 Windows Word 97 成預設設定。

DisableFeaturesIntroducedAfterByDefault 屬性設定為應用程式的全域選項及會影響所有文件。 如果您想要停用特定文件僅指定版本後新增的功能,請使用 DisableFeaturesIntroducedAfter 屬性。

範例

本範例會針對所有文件,停用 Word for Windows 95、7.0 版及 7.0a 版不支援的各項功能。

Sub FeaturesDisableByDefault() 
 With Application.Options 
 
 'Checks whether features are disabled 
 If .DisableFeaturesbyDefault = True Then 
 
 'If they are, disables all features after Word for Windows 95 
 .DisableFeaturesIntroducedAfterbyDefault = wd70 
 Else 
 
 'If not, turns on the disable features option and disables 
 'all features introduced after Word for Windows 95 
 .DisableFeaturesbyDefault = True 
 .DisableFeaturesIntroducedAfterbyDefault = wd70 
 End If 
 End With 
End Sub

另請參閱

Options 物件

支援和意見反應

有關於 Office VBA 或這份文件的問題或意見反應嗎? 如需取得支援服務並提供意見反應的相關指導,請參閱 Office VBA 支援與意見反應