Classe TwoInitialCapsException (Word VBA)
La classe TwoInitialCapsException représente une seule exception de correction automatique de majuscule. Pour utiliser une variable de classe TwoInitialCapsException, elle doit d'abord être instanciée, par exemple
Dim tic as TwoInitialCapsException
Set tic = AutoCorrect.TwoInitialCapsExceptions(Index:=1)
For Each
Voici un exemple de traitement des éléments TwoInitialCapsException dans une collection
Dim tic As TwoInitialCapsException
For Each tic In AutoCorrect.TwoInitialCapsExceptions
Next tic
Delete
Supprime l’exception spécifiée de deuxième majuscule dans un mot de la collection d’exceptions de correction automatique.
AutoCorrect.TwoInitialCapsExceptions(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.TwoInitialCapsExceptions(1).Index
Name
Renvoie le nom de l'objet spécifié.
Dim strName As String
strName = AutoCorrect.TwoInitialCapsExceptions(1).Name