Superscript

MathNaryOperator.Superscript property

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

public IMathElement Superscript { get; }

Ejemplos

Ejemplo:

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

Ver también