SetSubSuperscriptOnTheRight
Contenu
[
Cacher
]SetSubSuperscriptOnTheRight(IMathElement, IMathElement)
Crée un indice et un exposant à droite
public IMathRightSubSuperscriptElement SetSubSuperscriptOnTheRight(IMathElement subscript,
IMathElement superscript)
Paramètre | Type | Description |
---|---|---|
subscript | IMathElement | Indice (indice inférieur à droite) |
superscript | IMathElement | Exposant (indice supérieur à droite) |
Valeur de retour
Nouvel élément mathématique de type IMathRightSubSuperscriptElement
Exemples
Exemple :
[C#]
IMathElement baseElement = new MathematicalText("N");
IMathElement subscript = new MathematicalText("i");
IMathElement superscript = new MathematicalText("j");
IMathRightSubSuperscriptElement subsuperscript = baseElement.SetSubSuperscriptOnTheRight(subscript, superscript);
Voir aussi
- interface IMathRightSubSuperscriptElement
- interface IMathElement
- class MathElementBase
- namespace Aspose.Slides.MathText
- assembly Aspose.Slides
SetSubSuperscriptOnTheRight(string, string)
Crée un indice et un exposant à droite
public IMathRightSubSuperscriptElement SetSubSuperscriptOnTheRight(string subscript,
string superscript)
Paramètre | Type | Description |
---|---|---|
subscript | String | Indice (indice inférieur à droite) |
superscript | String | Exposant (indice supérieur à droite) |
Valeur de retour
Nouvel élément mathématique de type IMathRightSubSuperscriptElement
Exemples
Exemple :
[C#]
IMathElement baseElement = new MathematicalText("N");
IMathRightSubSuperscriptElement subsuperscript = baseElement.SetSubSuperscriptOnTheRight("i", "j");
Voir aussi
- interface IMathRightSubSuperscriptElement
- class MathElementBase
- namespace Aspose.Slides.MathText
- assembly Aspose.Slides