Classe HangulAndAlphabetException (Word VBA)
La classe HangulAndAlphabetException représente une exception donnée de correction automatique de l’alphabet ou de l’hangûl. Pour utiliser une variable de classe HangulAndAlphabetException, elle doit d'abord être instanciée, par exemple
Dim haa as HangulAndAlphabetException
Set haa = AutoCorrect.HangulAndAlphabetExceptions(Index:=1)
For Each
Voici un exemple de traitement des éléments HangulAndAlphabetException dans une collection
Dim haa As HangulAndAlphabetException
For Each haa In AutoCorrect.HangulAndAlphabetExceptions
Next haa
Delete
Supprime l'exception spécifiée.
AutoCorrect.HangulAndAlphabetExceptions(1).Delete
Index
Renvoie un type long qui représente la position d'un élément dans une collection.
Dim lngIndex As Long
lngIndex = AutoCorrect.HangulAndAlphabetExceptions(1).Index
Name
Renvoie le nom de l'objet spécifié.
Dim strName As String
strName = AutoCorrect.HangulAndAlphabetExceptions(1).Name