AutoCorrect.CorrectCapsLock property (Word)
True if Word automatically corrects instances in which you use the CAPS LOCK key inadvertently as you type. Read/write Boolean.
expression. CorrectCapsLock
expression A variable that represents an 'AutoCorrect' object.
This example determines whether Word is set to automatically correct CAPS LOCK key errors.
If AutoCorrect.CorrectCapsLock = True Then
MsgBox "Correct CAPS LOCK is active."
Else
MsgBox "Correct CAPS LOCK is not active."
End If
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.