Application.CheckLanguage Property

Word Developer Reference

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.

Visual Basic for Applications
  If Application.CheckLanguage = True Then
    MsgBox "Automatic language detection is activated!"
End If

See Also