SpellingOptions.KoreanUseAutoChangeList 屬性 (Excel)
當此屬性設定為 True 時,Microsoft Excel 會在使用拼字檢查時使用韓文的自動變更清單。 可讀寫的 Boolean。
語法
運算式。KoreanUseAutoChangeList
表達 代表 SpellingOptions 物件的 變數。
範例
在這個範例中,Microsoft Excel 檢查是否有開啟自動變更韓文文字的拼字檢查選項,並據此通知使用者。
Sub KoreanSpellCheck()
If Application.SpellingOptions.KoreanUseAutoChangeList = True Then
MsgBox "The spell checking feature to auto-change Korean words is on."
Else
MsgBox "The spell checking feature to auto-change Korean words is off."
End If
End Sub
支援和意見反應
有關於 Office VBA 或這份文件的問題或意見反應嗎? 如需取得支援服務並提供意見反應的相關指導,請參閱 Office VBA 支援與意見反應。