Superscript

MathNaryOperator.Superscript property

Specifies a supersript argument that, for example, in the case of an integral, sets the upper limit

public IMathElement Superscript { get; }

Examples

Example:

[C#]
IMathNaryOperator naryOperator = new MathematicalText("x").Nary(MathNaryOperatorTypes.Summation, "x=1", "100");
IMathElement superscriptArg = naryOperator.Superscript;

See Also