AutoCorrect Object

Multiple objects
AutoCorrect
Multiple objects

Represents the AutoCorrect functionality in Word.

Using the AutoCorrect Object

Use the AutoCorrect property to return the AutoCorrect object. The following example enables the AutoCorrect options and creates an AutoCorrect entry.

With AutoCorrect
    .CorrectCapsLock = True
    .CorrectDays = True
    .Entries.Add Name:="usualy", Value:="usually"
End With

The Entries property returns the AutoCorrectEntries object that represents the AutoCorrect entries in the AutoCorrect dialog box (Tools menu).

Properties | Application Property | CorrectCapsLock Property | CorrectDays Property | CorrectHangulAndAlphabet Property | CorrectInitialCaps Property | CorrectKeyboardSetting Property | CorrectSentenceCaps Property | CorrectTableCells Property | Creator Property | DisplayAutoCorrectOptions Property | Entries Property | FirstLetterAutoAdd Property | FirstLetterExceptions Property | HangulAndAlphabetAutoAdd Property | HangulAndAlphabetExceptions Property | OtherCorrectionsAutoAdd Property | OtherCorrectionsExceptions Property | Parent Property | ReplaceText Property | ReplaceTextFromSpellingChecker Property | TwoInitialCapsAutoAdd Property | TwoInitialCapsExceptions Property

Parent Objects | Application Object | Global Object

Child Objects | AutoCorrectEntries Object | FirstLetterExceptions Object | HangulAndAlphabetExceptions Object | OtherCorrectionsExceptions Object | TwoInitialCapsExceptions Object