IMathNaryOperator

IMathNaryOperator interface

指定 N 元数学对象,例如 Summation 和 Integral。 它由一个运算符、一个基数(或操作数)和可选的上限和下限组成。 N 元运算符的示例有:求和、并集、交集、积分

public interface IMathNaryOperator : IMathElement, IMathNaryOperatorProperties

特性

姓名描述
AsIMathElement { get; }允许获取基础 IMathElement 接口 IMathElement
AsIMathNaryOperatorProperties { get; }允许获取基础 IMathNaryOperatorProperties 接口 IMathNaryOperatorProperties
Base { get; }基本参数
Subscript { get; }指定下标参数,例如,在整数的情况下,设置下限
Superscript { get; }指定一个超级参数,例如,在整数的情况下,设置上限

例子

示例:

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

也可以看看