Excel) (SpellingOptions.SuggestMainOnly 屬性
當設定為 True 時,會指示 Microsoft Excel 在使用拼字檢查時,只建議主字典中的單字。 False 會移除使用拼字檢查工具時,只建議主字典中的單字限制。 可讀寫的 Boolean。
語法
運算式。SuggestMainOnly
表達 代表 SpellingOptions 物件的 變數。
範例
在此範例中,Microsoft Excel 會檢查拼字檢查選項,只建議主字典中的單字,並將狀態報表給使用者。
Sub UsingMainDictionary()
' Check the setting of suggesting words only from the main dictionary.
If Application.SpellingOptions.SuggestMainOnly = True Then
MsgBox "Spell checking option suggestions will only come from the main dictionary."
Else
MsgBox "Spell checking option suggestions are not limited to the main dictionary."
End If
End Sub
支援和意見反應
有關於 Office VBA 或這份文件的問題或意見反應嗎? 如需取得支援服務並提供意見反應的相關指導,請參閱 Office VBA 支援與意見反應。