SetSuperscript
Contenu
[
Cacher
]SetSuperscript(IMathElement)
Crée un exposant
public IMathSuperscriptElement SetSuperscript(IMathElement superscript)
Paramètre | Taper | La description |
---|---|---|
superscript | IMathElement | Exposant (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
- interface IMathSuperscriptElement
- interface IMathElement
- class MathElementBase
- espace de noms Aspose.Slides.MathText
- Assemblée Aspose.Slides
SetSuperscript(string)
Crée un exposant
public IMathSuperscriptElement SetSuperscript(string superscript)
Paramètre | Taper | La description |
---|---|---|
superscript | String | Exposant (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
- interface IMathSuperscriptElement
- class MathElementBase
- espace de noms Aspose.Slides.MathText
- Assemblée Aspose.Slides