Superscript

MathNaryOperator.Superscript property

Especifica un argumento de superíndice que, por ejemplo, en el caso de una integral, establece el límite superior

public IMathElement Superscript { get; }

Examples

Ejemplo:

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

See Also