SetSuperscript
SetSuperscript(IMathElement)
Erstellt Hochzahlen
public IMathSuperscriptElement SetSuperscript(IMathElement superscript)
Parameter | Typ | Beschreibung |
---|---|---|
superscript | IMathElement | Hochzahl (oberer Index rechts) |
Rückgabewert
Neues mathematisches Element vom Typ IMathSuperscriptElement
Beispiele
Beispiel:
[C#]
IMathElement element = new MathematicalText("N");
IMathElement index = new MathematicalText("4");
IMathSuperscriptElement superscript = element.SetSuperscript(index);
Siehe auch
- Schnittstelle IMathSuperscriptElement
- Schnittstelle IMathElement
- Namespace Aspose.Slides.MathText
- Assembly Aspose.Slides
SetSuperscript(string)
Erstellt Hochzahlen
public IMathSuperscriptElement SetSuperscript(string superscript)
Parameter | Typ | Beschreibung |
---|---|---|
superscript | String | Hochzahl (oberer Index rechts) |
Rückgabewert
Neues mathematisches Element vom Typ IMathSuperscriptElement
Beispiele
Beispiel:
[C#]
IMathElement element = new MathematicalText("N");
IMathSuperscriptElement superscript = element.SetSuperscript("4");
Siehe auch
- Schnittstelle IMathSuperscriptElement
- Schnittstelle IMathElement
- Namespace Aspose.Slides.MathText
- Assembly Aspose.Slides