Subscript

IMathNaryOperator.Subscript property

指定一个下标参数,例如,在积分的情况下,设置下限

public IMathElement Subscript { get; }

Examples

示例:

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

See Also