Classe OMathRecognizedFunction (Word VBA)

La classe OMathRecognizedFunction représente une fonction reconnue. Pour utiliser une variable de classe OMathRecognizedFunction, elle doit d'abord être instanciée, par exemple


Dim omr as OMathRecognizedFunction
Set omr = Application.OMathAutoCorrect.Functions(Index:=1)

For Each

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


Dim omrFunction As OMathRecognizedFunction
For Each omrFunction In Application.OMathAutoCorrect.Functions
	
Next omrFunction

Delete

Supprime la fonction identifiée dans la liste correspondante.


Application.OMathAutoCorrect.Functions(1).Delete

Index

Renvoie un type long qui représente la position d’un élément dans une collection.


Dim lngIndex As Long
lngIndex = Application.OMathAutoCorrect.Functions(1).Index

Name

Renvoie une chaîne qui représente le nom d’une fonction d’équation reconnue.


Dim strName As String
strName = Application.OMathAutoCorrect.Functions(1).Name