返回一个
SpellingOptions
对象,该对象表示应用程序的拼写检查选项。
语法
表达式.SpellingOptions
表达式 一个代表 Application 对象的变量。
示例
本示例中,ET 检查忽略混合数字的拼写检查选项的设置,并将其状态通知给用户。
示例代码 |
function MixedDigitCheck(){
// Determine the setting on spell checking for mixed digits.
if(Application.SpellingOptions.IgnoreMixedDigits == true){
MsgBox("The spelling options are set to ignore mixed digits.")
}
else{
MsgBox("The spelling options are set to check for mixed digits.")
}
}
|