Application.CheckLanguage Property (Word)
True if Microsoft Word automatically detects the language you are using as you type. Read/write Boolean.
Syntax
expression .CheckLanguage
expression An expression that returns an Application object.
Remarks
If you haven't set up Word for multilingual editing, the CheckLanguage property always returns False.
Example
This example checks to see if automatic language detection has been activated.
If Application.CheckLanguage = True Then
MsgBox "Automatic language detection is activated!"
End If