Nary
Contenido
[
Ocultar
]Nary(MathNaryOperatorTypes, IMathElement, IMathElement)
Crea un operador N-ario
public IMathNaryOperator Nary(MathNaryOperatorTypes type, IMathElement lowerLimit,
IMathElement upperLimit)
Parámetro | Escribe | Descripción |
---|---|---|
type | MathNaryOperatorTypes | El tipo de operador N-ario |
lowerLimit | IMathElement | el límite inferior |
upperLimit | IMathElement | el limite superior |
Valor_devuelto
Nueva instancia de tipoIMathNaryOperator
Ejemplos
Ejemplo:
[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);
Ver también
- interface IMathNaryOperator
- enum MathNaryOperatorTypes
- interface IMathElement
- class MathElementBase
- espacio de nombres Aspose.Slides.MathText
- asamblea Aspose.Slides
Nary(MathNaryOperatorTypes, string, string)
Crea un operador N-ario
public IMathNaryOperator Nary(MathNaryOperatorTypes type, string lowerLimit, string upperLimit)
Parámetro | Escribe | Descripción |
---|---|---|
type | MathNaryOperatorTypes | El tipo de operador N-ario |
lowerLimit | String | el límite inferior |
upperLimit | String | el limite superior |
Valor_devuelto
Nueva instancia de tipoIMathNaryOperator
Ejemplos
Ejemplo:
[C#]
IMathNaryOperator naryOperator = new MathematicalText("i").Nary(MathNaryOperatorTypes.Summation, "i=0", "𝑛");
Ver también
- interface IMathNaryOperator
- enum MathNaryOperatorTypes
- class MathElementBase
- espacio de nombres Aspose.Slides.MathText
- asamblea Aspose.Slides