AutoCorrect Object

Description

Contains Microsoft Excel AutoCorrect attributes (capitalization of names of days, correction of two initial capital letters, automatic correction list, and so on) This object is available only in Microsoft Excel for Windows 95.

Accessors

The AutoCorrect property returns the AutoCorrect object. The AutoCorrect attributes are properties of the AutoCorrect object. The following example sets Microsoft Excel to correct words that begin with two initial capital letters.


With Application.AutoCorrect
    .TwoInitialCapitals = True
    .ReplaceText = True
End With

Properties

Application Property, Parent Property, TwoInitialCapitals Property, CapitalizeNamesOfDays Property, ReplacementList Property, Creator Property, ReplaceText Property.

Methods

AddReplacement Method, DeleteReplacement Method.