SpellingOptions.GermanPostReform プロパティ (Excel)

True を指定 すると、ドイツの改革後ルールを使用して単語のスペルを確認できます。 False を指定 すると、この機能が取り消されます。 読み取り/書き込みが可能な Boolean です。

構文

GermanPostReform

SpellingOptions オブジェクトを表す変数。

次の使用例では、スペル チェックのオプションのうち、ドイツ語の新正書法の規則を使用する機能のオン/オフの状態を調べ、オフの場合はオンにします。同時に、その状態を示すメッセージを表示します。

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 のサポートおよびフィードバックを参照してください。