FirstLetterExceptions.Add Method

Word Developer Reference

Returns a FirstLetterException object that represents a new exception added to the list of AutoCorrect exceptions.

Syntax

expression.Add(Name)

expression   Required. A variable that represents a FirstLetterExceptions collection.

Parameters

Name Required/Optional Data Type Description
Name Required String The word with two initial capital letters that you want Microsoft Word to overlook.

Return Value
FirstLetterException

Remarks

If the FirstLetterAutoAdd property is True, abbreviations are automatically added to the list of first-letter exceptions.

Example

This example adds the abbreviation addr. to the list of first-letter exceptions.

Visual Basic for Applications
  AutoCorrect.FirstLetterExceptions.Add Name:="addr."

See Also