Options.AllowCompoundNounProcessing property (Word)
True if Microsoft Word ignores compound nouns when checking spelling in a Korean language document. Read/write Boolean.
Syntax
expression. AllowCompoundNounProcessing
expression 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 compound nouns when checking spelling in a Korean language document.
If Options.AllowCompoundNounProcessing = False Then
x = MsgBox("Do you want to ignore compound " _
& "nouns when checking spelling?", _
vbYesNo)
If x = vbYes Then
Options.AllowCompoundNounProcessing = True
MsgBox "Compound nouns will be ignored!"
End If
End If
See also
Support and feedback
Have questions or feedback about Office VBA or this documentation? Please see Office VBA support and feedback for guidance about the ways you can receive support and provide feedback.