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);
也可以看看
- interface IMathNaryOperator
- enum MathNaryOperatorTypes
- interface IMathElement
- 命名空间 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", "𝑛");
也可以看看
- interface IMathNaryOperator
- enum MathNaryOperatorTypes
- interface IMathElement
- 命名空间 Aspose.Slides.MathText
- 部件 Aspose.Slides