Options.AllowCombinedAuxiliaryForms 屬性 (Word)
True 是表示 如果 Microsoft Word 在檢查韓文文件中的拼字時,會略過助動詞格式。 可讀寫的 Boolean。
語法
expression。 AllowCombinedAuxiliaryForms
表達 會傳回 Options 物件的運算式。
註解
如需使用 Word 搭配東亞語言的詳細資訊,請參閱東亞語言的 Word 功能。
範例
本範例會詢問使用者,當 Microsoft Word 在檢查韓文文件的拼字時是否應略過助動詞格式。
If Options.AllowCombinedAuxiliaryForms = False Then
x = MsgBox("Do you want to ignore auxiliary " _
& "verb forms when checking spelling?", _
vbYesNo)
If x = vbYes Then
Options.AllowCombinedAuxiliaryForms = True
MsgBox "Auxiliary verb forms will be ignored!"
End If
End If
另請參閱
支援和意見反應
有關於 Office VBA 或這份文件的問題或意見反應嗎? 如需取得支援服務並提供意見反應的相關指導,請參閱 Office VBA 支援與意見反應。