Classe OMathScrSubSup (Word VBA)
La classe OMathScrSubSup représente une équation dont la base contient un exposant ou un indice. Pour utiliser une variable de classe OMathScrSubSup, elle doit d'abord être instanciée, par exemple
AlignScripts
Cette propriété renvoie ou définit un type Boolean qui indique s'il faut aligner horizontalement les sous-scripts et les exposants dans l'objet sous-exposant.
Dim oms As OMathScrSubSup: Set oms =
oms.AlignScripts = True
E
Renvoie un objet OMath qui représente la base de l'objet d'équation spécifié.
Dim oms As OMathScrSubSup: Set oms =
Dim omhE As OMath
Set omhE = oms.E
RemoveSub
Supprime l'indice d'une équation et renvoie un objet OMathFunction représentant l'équation mise à jour, sans l'indice.
Dim oms As OMathScrSubSup: Set oms =
Dim omfRemoveSub As OMathFunction
Set omfRemoveSub = oms.RemoveSub()
RemoveSup
Supprime l'exposant d'une équation et renvoie un objet OMathFunction représentant l'équation mise à jour, sans l'exposant.
Dim oms As OMathScrSubSup: Set oms =
Dim omfRemoveSup As OMathFunction
Set omfRemoveSup = oms.RemoveSup()
Sub
Renvoie un objet OMath qui représente l'indice pour un objet d'indice-exposant.
Dim oms As OMathScrSubSup: Set oms =
Dim omhSub As OMath
Set omhSub = oms.Sub
Sup
Renvoie un objet OMath qui représente l’exposant pour un objet d’indice-exposant.
Dim oms As OMathScrSubSup: Set oms =
Dim omhSup As OMath
Set omhSup = oms.Sup
ToScrPre
Convertit une équation avec un exposant de base ou un indice en une équation avec un exposant ou un indice à gauche de la base.
Dim oms As OMathScrSubSup: Set oms =
Dim omfToScrPre As OMathFunction
Set omfToScrPre = oms.ToScrPre()