AutoCorrect.CorrectKeyboardSetting property (Word)
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.
Syntax
expression. CorrectKeyboardSetting
expression An expression that returns an 'AutoCorrect' object.
Remarks
The CheckLanguage property must be set to True to use the CorrectKeyboardSetting property.
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
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.