SpellingOptions.GermanPostReform 属性 (Excel)
如果为 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 支持和反馈,获取有关如何接收支持和提供反馈的指南。