SetSuperscript
SetSuperscript(IMathElement)
Erstellt hochgestellte
public IMathSuperscriptElement SetSuperscript(IMathElement superscript)
Parameter | Typ | Beschreibung |
---|---|---|
superscript | IMathElement | Hochgestellt (oberer Index rechts) |
Rückgabewert
Neues mathematisches Element des TypsIMathSuperscriptElement
Beispiele
Beispiel:
[C#]
IMathElement element = new MathematicalText("N");
IMathElement index = new MathematicalText("4");
IMathSuperscriptElement superscript = element.SetSuperscript(index);
Siehe auch
- interface IMathSuperscriptElement
- interface IMathElement
- namensraum Aspose.Slides.MathText
- Montage Aspose.Slides
SetSuperscript(string)
Erstellt hochgestellte
public IMathSuperscriptElement SetSuperscript(string superscript)
Parameter | Typ | Beschreibung |
---|---|---|
superscript | String | Hochgestellt (oberer Index rechts) |
Rückgabewert
Neues mathematisches Element des TypsIMathSuperscriptElement
Beispiele
Beispiel:
[C#]
IMathElement element = new MathematicalText("N");
IMathSuperscriptElement superscript = element.SetSuperscript("4");
Siehe auch
- interface IMathSuperscriptElement
- interface IMathElement
- namensraum Aspose.Slides.MathText
- Montage Aspose.Slides