SetSuperscript

SetSuperscript(IMathElement)

Crée un exposant

public IMathSuperscriptElement SetSuperscript(IMathElement superscript)
ParamètreTaperLa description
superscriptIMathElementExposant (index supérieur à droite)

Return_Value

Nouvel élément mathématique de typeIMathSuperscriptElement

Exemples

Exemple :

[C#]
IMathElement element = new MathematicalText("N");
IMathElement index = new MathematicalText("4");
IMathSuperscriptElement superscript = element.SetSuperscript(index);

Voir également


SetSuperscript(string)

Crée un exposant

public IMathSuperscriptElement SetSuperscript(string superscript)
ParamètreTaperLa description
superscriptStringExposant (index supérieur à droite)

Return_Value

Nouvel élément mathématique de typeIMathSuperscriptElement

Exemples

Exemple :

[C#]
IMathElement element = new MathematicalText("N");
IMathSuperscriptElement superscript = element.SetSuperscript("4");

Voir également