Superscript

MathLeftSubSuperscriptElement.Superscript property

Верхний индекс

public IMathElement Superscript { get; }

Примеры

Пример:

[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;

Смотрите также