SetSuperscript

SetSuperscript(IMathElement)

Erstellt Hochzahlen

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


SetSuperscript(string)

Erstellt Hochzahlen

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