Subscript

IMathLeftSubSuperscriptElement.Subscript property

Нижний индекс

public IMathElement Subscript { 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 sub = leftSubSuperscript.Subscript;

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