OtherCorrectionsExceptions Collection Object

AutoCorrect
OtherCorrectionsExceptions
OtherCorrectionsException

A collection of OtherCorrectionsException objects that represents the list of words that Microsoft Word won't correct automatically. This list corresponds to the list of AutoCorrect exceptions on the Other Corrections tab in the AutoCorrect Exceptions dialog box (AutoCorrect command, Tools menu).

Using the OtherCorrectionsExceptions Collection

Use the OtherCorrectionsExceptions property to return the OtherCorrectionsExceptions collection. The following example displays the items in this collection.

For Each aCap In AutoCorrect.OtherCorrectionsExceptions
    MsgBox aCap.Name
Next aCap

If the value of the OtherCorrectionsAutoAdd property is True, words are automatically added to the list of AutoCorrect exceptions. Use the Add method to add an item to the OtherCorrectionsExceptions collection. The following example adds "TipTop" to the list of AutoCorrect exceptions.

AutoCorrect.OtherCorrectionsExceptions.Add Name:="TipTop"

Use OtherCorrectionsExceptions(index), where index is the name or the index number, to return a single OtherCorrectionsException object. The following example deletes "WTop" from the list of AutoCorrect exceptions.

AutoCorrect.OtherCorrectionsExceptions("WTop").Delete

The index number represents the position of the AutoCorrect exception in the OtherCorrectionsExceptions collection. The following example displays the name of the first item in the OtherCorrectionsExceptions collection.

MsgBox AutoCorrect.OtherCorrectionsExceptions(1).Name

Properties | Application Property | Count Property | Creator Property | Parent Property

Methods | Add Method | Item Method

Parent Objects | AutoCorrect

Child Objects