Note
Access to this page requires authorization. You can try signing in or changing directories.
Access to this page requires authorization. You can try changing directories.
AllowCombinedAuxiliaryForms Property
This content is no longer actively maintained. It is provided as is, for anyone who may still be using these technologies, with no warranties or claims of accuracy with regard to the most recent product version or service release.
True if Microsoft Word ignores auxiliary verb forms when checking spelling in a Korean language document. Read/write Boolean.
expression.AllowCombinedAuxiliaryForms
expression Required. An expression that returns an Options object.
Remarks
For more information on using Word with Asian languages, see Word features for Asian languages.
Example
This example asks the user whether Microsoft Word should ignore auxiliary verb forms when checking spelling in a Korean language document.
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