Nary
内容
[
隐藏
]Nary(MathNaryOperatorTypes, IMathElement, IMathElement)
创建一个 N 叉运算符
public IMathNaryOperator Nary(MathNaryOperatorTypes type, IMathElement lowerLimit,
IMathElement upperLimit)
参数 | 类型 | 描述 |
---|---|---|
type | MathNaryOperatorTypes | N 叉运算符类型 |
lowerLimit | IMathElement | 下限 |
upperLimit | IMathElement | 上限 |
返回值
新实例类型为 IMathNaryOperator
示例
示例:
[C#]
IMathElement baseElement = new MathematicalText("i-1");
IMathElement lowerLimit = new MathematicalText("i=0");
IMathElement upperLimit = new MathematicalText("𝑛");
IMathNaryOperator naryOperator = baseElement.Nary(MathNaryOperatorTypes.Summation, lowerLimit, upperLimit);
另见
- 接口 IMathNaryOperator
- 枚举 MathNaryOperatorTypes
- 接口 IMathElement
- 类 MathElementBase
- 命名空间 Aspose.Slides.MathText
- 程序集 Aspose.Slides
Nary(MathNaryOperatorTypes, string, string)
创建一个 N 叉运算符
public IMathNaryOperator Nary(MathNaryOperatorTypes type, string lowerLimit, string upperLimit)
参数 | 类型 | 描述 |
---|---|---|
type | MathNaryOperatorTypes | N 叉运算符类型 |
lowerLimit | String | 下限 |
upperLimit | String | 上限 |
返回值
新实例类型为 IMathNaryOperator
示例
示例:
[C#]
IMathNaryOperator naryOperator = new MathematicalText("i").Nary(MathNaryOperatorTypes.Summation, "i=0", "𝑛");