CorrectKeyboardSetting Property

Microsoft Word Visual Basic

CorrectKeyboardSetting Property

       

True if Microsoft Word automatically transposes words to their native alphabet if you type text in a language other than the current keyboard language. Read/write Boolean.

expression.CorrectKeyboardSetting

expression   Required. An expression that returns an AutoCorrect object.

Remarks

The CheckLanguage property must be set to True in order to use the CorrectKeyboardSetting property.

For more information on using Word with multiple languages, see Troubleshoot multilingual text and automatic language detection.

Example

This example displays a dialog box where the user can choose whether or not Word automatically transposes foreign words to their native alphabets.

x = MsgBox("Do you want Microsoft Word to tranpose " _
    & "foreign words to their native alphabet?", _
    vbYesNo)
If x = vbYes Then
    Application.CheckLanguage = True
    AutoCorrect.CorrectKeyboardSetting = True
    MsgBox "Automatic keyboard correction enabled!"
End If