Document.DisableFeatures (Word)
True deaktiviert alle Features, die nach der in der DisableFeaturesIntroducedAfter -Eigenschaft angegebenen Version eingeführt wurden.
Die DisableFeatures -Eigenschaft wirkt sich nur auf das Dokument aus, für das Sie die Eigenschaft festgelegt haben.
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