Superscript

MathLeftSubSuperscriptElement.Superscript property

Hochgestellt

public IMathElement Superscript { get; }

Beispiele

Beispiel:

[C#]
IMathElement baseElement = new MathematicalText("X");
IMathElement subscript = new MathematicalText("i");
IMathElement superscript = new MathematicalText("j");
MathLeftSubSuperscriptElement leftSubSuperscript = new MathLeftSubSuperscriptElement(baseElement, subscript, superscript);
IMathElement sup = leftSubSuperscript.Superscript;

Siehe auch