IMathNaryOperator

IMathNaryOperator 接口

指定一个 N-元数学对象,例如求和和积分。它由一个运算符、一个基数(或操作数)以及可选的上限和下限组成。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");  

另请参阅