SpellingOptions.KoreanCombineAux プロパティ (Excel)

True に設定すると、スペル チェック時に韓国語の補助動詞と形容詞が結合されます。 読み取り/書き込みが可能な Boolean です。

構文

KoreanCombineAux

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

次の使用例では、スペル チェック時に、韓国語の助動詞と形容詞を結合するオプションがオンまたはオフかを調べ、その結果に応じたメッセージを表示します。

Sub KoreanSpellCheck() 
 
 If Application.SpellingOptions.KoreanCombineAux = True Then 
 MsgBox "The option to combine Korean auxiliary verbs and adjectives while checking spelling is on." 
 Else 
 MsgBox "The option to combine Korean auxiliary verbs and adjectives while checking spelling is off." 
 End If 
 
End Sub

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

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