Share via


HangulAndAlphabetException Object

Word Developer Reference

Represents a single Hangul or alphabet AutoCorrect exception. The HangulAndAlphabetException object is a member of the HangulAndAlphabetExceptions collection.

Remarks

Use HangulAndAlphabetExceptions(Index), where Index is the Hangul or alphabet AutoCorrect exception name or the index number, to return a single HangulAndAlphabetException object. The following example deletes the alphabet AutoCorrect exception named "hello."

Visual Basic for Applications
  AutoCorrect.HangulAndAlphabetExceptions("hello").Delete

The index number represents the position of the Hangul or alphabet AutoCorrect exception in the HangulAndAlphabetExceptions collection. The following example displays the name of the first item in the HangulAndAlphabetExceptions collection.

Visual Basic for Applications
  MsgBox AutoCorrect.HangulAndAlphabetExceptions(1).Name

If the value of the HangulAndAlphabetAutoAdd property is True, words are automatically added to the list of Hangul and alphabet AutoCorrect exceptions. Use the Add method to add an item to the HangulAndAlphabetExceptions collection. The following example adds "goodbye" to the list of alphabet AutoCorrect exceptions.

Visual Basic for Applications
  AutoCorrect.HangulAndAlphabetExceptions.Add Name:="goodbye"
Bb179113.vs_note(en-us,office.12).gif  Note
The HangulAndAlphabetExceptions collection includes all Hangul and alphabet AutoCorrect exceptions and corresponds to the items listed on the Korean tab in the AutoCorrect Exceptions dialog box.

See Also