SetSuperscript
SetSuperscript(IMathElement)
Erstellt Hochstellung
public IMathSuperscriptElement SetSuperscript(IMathElement superscript)
| Parameter | Typ | Beschreibung |
|---|---|---|
| superscript | IMathElement | Hochstellung (oberer Index rechts) |
Rückgabewert
Neues Mathematikelement vom Typ IMathSuperscriptElement
Beispiele
Beispiel:
[C#]
IMathElement element = new MathematicalText("N");
IMathElement index = new MathematicalText("4");
IMathSuperscriptElement superscript = element.SetSuperscript(index);
Siehe Auch
- interface IMathSuperscriptElement
- interface IMathElement
- class MathElementBase
- namespace Aspose.Slides.MathText
- assembly Aspose.Slides
SetSuperscript(string)
Erstellt Hochstellung
public IMathSuperscriptElement SetSuperscript(string superscript)
| Parameter | Typ | Beschreibung |
|---|---|---|
| superscript | String | Hochstellung (oberer Index rechts) |
Rückgabewert
Neues Mathematikelement vom Typ IMathSuperscriptElement
Beispiele
Beispiel:
[C#]
IMathElement element = new MathematicalText("N");
IMathSuperscriptElement superscript = element.SetSuperscript("4");
Siehe Auch
- interface IMathSuperscriptElement
- class MathElementBase
- namespace Aspose.Slides.MathText
- assembly Aspose.Slides