Excel) (SpellingOptions.GermanPostReform 屬性
True 是表示 使用德文的重新格式化後規則來檢查單字拼字。 如果為 False 則取消此功能。 可讀寫的 Boolean。
語法
運算式。GermanPostReform
表達 代表 SpellingOptions 物件的 變數。
範例
在此範例中,Microsoft Excel 將判斷對德文的拼字檢查是否使用改革後的新制德文規則,如果沒有則啟用這項功能,將會自動啟動並通知使用者這個狀況。
Sub SpellingCheck()
' Determine if spelling check for German words is using post-reform rules.
If Application.SpellingOptions.GermanPostReform = False Then
Application.SpellingOptions.GermanPostReform = True
MsgBox "German words will now use post-reform rules."
Else
MsgBox "German words using post-reform rules has already been set."
End If
End Sub
支援和意見反應
有關於 Office VBA 或這份文件的問題或意見反應嗎? 如需取得支援服務並提供意見反應的相關指導,請參閱 Office VBA 支援與意見反應。