Subscript

MathNaryOperator.Subscript property

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

public IMathElement Subscript { get; }

Ejemplos

Ejemplo:

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

Ver también