Base

IMathRightSubSuperscriptElement.Base property

Base argument

public IMathElement Base { get; }

Examples

Example:

[C#]
IMathElement baseElement = new MathematicalText("X");
IMathElement subscript = new MathematicalText("i");
IMathElement superscript = new MathematicalText("j");
MathRightSubSuperscriptElement subsuperscript = new MathRightSubSuperscriptElement(baseElement, subscript, superscript);
IMathElement baseElem = subsuperscript.Base;

See Also