Nary
Contenido
[
Ocultar
]Nary(MathNaryOperatorTypes, IMathElement, IMathElement)
Crea un operador N-ario
public IMathNaryOperator Nary(MathNaryOperatorTypes type, IMathElement lowerLimit,
IMathElement upperLimit)
Parámetro | Tipo | Descripción |
---|---|---|
type | MathNaryOperatorTypes | El tipo de operador N-ario |
lowerLimit | IMathElement | El límite inferior |
upperLimit | IMathElement | El límite superior |
Valor de retorno
Nueva instancia del tipo IMathNaryOperator
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);
Véase también
- interfaz IMathNaryOperator
- enum MathNaryOperatorTypes
- interfaz IMathElement
- clase MathElementBase
- espacio de nombres Aspose.Slides.MathText
- ensamblado Aspose.Slides
Nary(MathNaryOperatorTypes, string, string)
Crea un operador N-ario
public IMathNaryOperator Nary(MathNaryOperatorTypes type, string lowerLimit, string upperLimit)
Parámetro | Tipo | Descripción |
---|---|---|
type | MathNaryOperatorTypes | El tipo de operador N-ario |
lowerLimit | String | El límite inferior |
upperLimit | String | El límite superior |
Valor de retorno
Nueva instancia del tipo IMathNaryOperator
Ejemplos
Ejemplo:
[C#]
IMathNaryOperator naryOperator = new MathematicalText("i").Nary(MathNaryOperatorTypes.Summation, "i=0", "𝑛");
Véase también
- interfaz IMathNaryOperator
- enum MathNaryOperatorTypes
- clase MathElementBase
- espacio de nombres Aspose.Slides.MathText
- ensamblado Aspose.Slides