SpellingOptions.KoreanProcessCompound プロパティ (Excel)

True に設定すると、スペル チェックを使用するときに韓国語の複合名詞を処理できます。 読み取り/書き込みが可能な Boolean です。

構文

KoreanProcessCompound

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

次の使用例では、スペル チェックのオプションのうち、韓国語の複合名詞を作成する機能のオン/オフの状態を調べ、その結果に応じたメッセージを表示します。

Sub KoreanSpellCheck() 
 
 If Application.SpellingOptions.KoreanProcessCompound = True Then 
 MsgBox "The spell checking feature to process Korean compound nouns is on." 
 Else 
 MsgBox "The spell checking feature to process Korean compound nouns is off." 
 End If 
 
End Sub

サポートとフィードバック

Office VBA またはこの説明書に関するご質問やフィードバックがありますか? サポートの受け方およびフィードバックをお寄せいただく方法のガイダンスについては、Office VBA のサポートおよびフィードバックを参照してください。