Superscript

IMathSuperscriptElement.Superscript property

Hochgestellt

public IMathElement Superscript { get; }

Beispiele

Beispiel:

[C#]
IMathElement baseElement = new MathematicalText("X");
IMathElement superscript = new MathematicalText("i");
IMathSuperscriptElement superscriptElement = new MathSuperscriptElement(baseElement, superscript);
IMathElement super = superscriptElement.Superscript;

Siehe auch