Classe OtherCorrectionsException (Word VBA)

La classe OtherCorrectionsException représente une seule exception de correction automatique. Pour utiliser une variable de classe OtherCorrectionsException, elle doit d'abord être instanciée, par exemple


Dim oce as OtherCorrectionsException
Set oce = AutoCorrect.OtherCorrectionsExceptions(Index:=1)

For Each

Voici un exemple de traitement des éléments OtherCorrectionsException dans une collection


Dim oce As OtherCorrectionsException
For Each oce In AutoCorrect.OtherCorrectionsExceptions
	
Next oce

Delete

Supprime l'exception spécifiée.


AutoCorrect.OtherCorrectionsExceptions(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.OtherCorrectionsExceptions(1).Index

Name

Renvoie le nom de l'objet spécifié.


Dim strName As String
strName = AutoCorrect.OtherCorrectionsExceptions(1).Name