Excel) (SpellingOptions.ArabicModes 属性
返回或设置阿拉伯语的拼写检查模式。 XlArabicModes 类型,可读写。
语法
表达式。ArabicModes
表达 一个代表 SpellingOptions 对象的变量。
示例
在本示例中,Microsoft Excel 检查阿拉伯语模式的拼写检查选项的设置,如果尚未设置该阿拉伯语模式,则将检测以“yaa”开头或以“alef hamza”结尾的单词。 在运行本示例之前,拼写选项中的阿拉伯语模式选项必须可用。
Sub SpellCheck()
If Application.SpellingOptions.ArabicModes <> xlArabicBothStrict Then
Application.SpellingOptions.ArabicModes = xlArabicBothStrict
MsgBox "Spell checking for Arabic mode has been changed to a strict setting."
Else
MsgBox "Spell checking for Arabic mode is already in a strict setting."
End If
End Sub
支持和反馈
有关于 Office VBA 或本文档的疑问或反馈? 请参阅 Office VBA 支持和反馈,获取有关如何接收支持和提供反馈的指南。