Nary
Contents
[
Hide
]Nary(MathNaryOperatorTypes, IMathElement, IMathElement)
Creates a N-ary operator
public IMathNaryOperator Nary(MathNaryOperatorTypes type, IMathElement lowerLimit,
IMathElement upperLimit)
Parameter | Type | Description |
---|---|---|
type | MathNaryOperatorTypes | The N-ary operator type |
lowerLimit | IMathElement | The lower limit |
upperLimit | IMathElement | The upper limit |
Return Value
New instance of type IMathNaryOperator
Examples
Example:
[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);
See Also
- interface IMathNaryOperator
- enum MathNaryOperatorTypes
- interface IMathElement
- class MathElementBase
- namespace Aspose.Slides.MathText
- assembly Aspose.Slides
Nary(MathNaryOperatorTypes, string, string)
Creates a N-ary operator
public IMathNaryOperator Nary(MathNaryOperatorTypes type, string lowerLimit, string upperLimit)
Parameter | Type | Description |
---|---|---|
type | MathNaryOperatorTypes | The N-ary operator type |
lowerLimit | String | The lower limit |
upperLimit | String | The upper limit |
Return Value
New instance of type IMathNaryOperator
Examples
Example:
[C#]
IMathNaryOperator naryOperator = new MathematicalText("i").Nary(MathNaryOperatorTypes.Summation, "i=0", "𝑛");
See Also
- interface IMathNaryOperator
- enum MathNaryOperatorTypes
- class MathElementBase
- namespace Aspose.Slides.MathText
- assembly Aspose.Slides