如果 WPS 在朝鲜语文档中执行拼写检查时将忽略复合名词,则该属性值为
True。
Boolean 类型,可读写。
语法
表达式.AllowCompoundNounProcessing
表达式 返回 Options 对象的表达式。
说明
有关在 WPS 中使用亚洲语言的详细信息,请参阅 WPS 中关于亚洲语言的功能。
示例
本示例询问用户:WPS 在朝鲜语文档中执行拼写检查时,是否忽略复合名词。
示例代码 |
if(Options.AllowCompoundNounProcessing == false){
let x = MsgBox("Do you want to ignore compound "+"nouns when checking spelling?",jsYesNo)
if(x == jsResultYes){
Options.AllowCompoundNounProcessing = true
MsgBox("Compound nouns will be ignored!")
}
}
|