AutoCorrect.HangulAndAlphabetExceptions property (Word)
Returns a HangulAndAlphabetExceptions collection that represents the list of Hangul and alphabet AutoCorrect exceptions.
Syntax
expression. HangulAndAlphabetExceptions
expression An expression that returns an 'AutoCorrect' object.
Remarks
This list corresponds to the list of Hangul and alphabet AutoCorrect exceptions on the Korean tab in the AutoCorrect Exceptions dialog box.
For information about returning a single member of a collection, see Returning an object from a collection.
Example
This example prompts the user to delete or keep each hangul and alphabet AutoCorrect exception on the Korean tab in the AutoCorrect Exceptions dialog box.
For Each anEntry In _
AutoCorrect.HangulAndAlphabetExceptions
response = MsgBox("Delete entry: " _
& anEntry.Name, vbYesNoCancel)
If response = vbYes Then
anEntry.Delete
Else
If response = vbCancel Then End
End If
Next anEntry
See also
Support and feedback
Have questions or feedback about Office VBA or this documentation? Please see Office VBA support and feedback for guidance about the ways you can receive support and provide feedback.