AllowCombinedAuxiliaryForms Property 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