Subscript

MathNaryOperator.Subscript property

Specifies a subscript argument that, for example, in the case of an integral, sets the lower limit

public IMathElement Subscript { get; }

Examples

Example:

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

See Also