SetSuperscript

SetSuperscript(IMathElement)

Erstellt Hochstellung

public IMathSuperscriptElement SetSuperscript(IMathElement superscript)
ParameterTypBeschreibung
superscriptIMathElementHochstellung (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


SetSuperscript(string)

Erstellt Hochstellung

public IMathSuperscriptElement SetSuperscript(string superscript)
ParameterTypBeschreibung
superscriptStringHochstellung (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