SetSuperscript

SetSuperscript(IMathElement)

Erstellt hochgestellte

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


SetSuperscript(string)

Erstellt hochgestellte

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