SpellingOptions.SuggestMainOnly 属性 (Excel)
设置为 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 支持和反馈,获取有关如何接收支持和提供反馈的指南。