Word) (Document.DisableFeatures 屬性
True 會停用特定 DisableFeaturesIntroducedAfter 屬性中指定的版本後新增的所有功能。 預設值為 False 。 可讀寫的 Boolean。
語法
expression。 DisableFeatures
表達 代表 Document 物件的變數。
註解
DisableFeatures 屬性只會影響您設定屬性的文件。 如果您計劃,讓您不要最後簡介 到文件的功能無法在其版本中使用的共用與舊版 Microsoft Word 的使用者之間的文件使用此屬性。
範例
本範例會為目前文件停用 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 支援與意見反應。