Integral
Contenido
[
Ocultar
]Integral(MathIntegralTypes, IMathElement, IMathElement, MathLimitLocations)
Toma la integral
public IMathNaryOperator Integral(MathIntegralTypes integralType, IMathElement lowerLimit,
IMathElement upperLimit, MathLimitLocations limitLocations)
Parámetro | Escribe | Descripción |
---|---|---|
integralType | MathIntegralTypes | tipo integral |
lowerLimit | IMathElement | Límite inferior de integral |
upperLimit | IMathElement | Límite superior de integral |
limitLocations | MathLimitLocations | ubicación de los límites |
Valor_devuelto
Nueva instancia de tipoIMathNaryOperator
Ejemplos
Ejemplo:
[C#]
IMathElement baseElement = new MathematicalText("𝑥");
IMathElement lowerLimit = new MathematicalText("1");
IMathElement upperLimit = new MathematicalText("2");
IMathNaryOperator integral = baseElement.Integral(MathIntegralTypes.Simple, lowerLimit, upperLimit, MathLimitLocations.UnderOver);
Ver también
- interface IMathNaryOperator
- enum MathIntegralTypes
- interface IMathElement
- enum MathLimitLocations
- class MathElementBase
- espacio de nombres Aspose.Slides.MathText
- asamblea Aspose.Slides
Integral(MathIntegralTypes, IMathElement, IMathElement)
Toma la integral
public IMathNaryOperator Integral(MathIntegralTypes integralType, IMathElement lowerLimit,
IMathElement upperLimit)
Parámetro | Escribe | Descripción |
---|---|---|
integralType | MathIntegralTypes | tipo integral |
lowerLimit | IMathElement | Límite inferior de integral |
upperLimit | IMathElement | Límite superior de integral |
Valor_devuelto
Nueva instancia de tipoIMathNaryOperator
Ejemplos
Ejemplo:
[C#]
IMathElement baseElement = new MathematicalText("𝑥");
IMathElement lowerLimit = new MathematicalText("1");
IMathElement upperLimit = new MathematicalText("2");
IMathNaryOperator integral = baseElement.Integral(MathIntegralTypes.Simple, lowerLimit, upperLimit, MathLimitLocations.UnderOver);
Ver también
- interface IMathNaryOperator
- enum MathIntegralTypes
- interface IMathElement
- class MathElementBase
- espacio de nombres Aspose.Slides.MathText
- asamblea Aspose.Slides
Integral(MathIntegralTypes)
Toma la integral sin límites
public IMathNaryOperator Integral(MathIntegralTypes integralType)
Parámetro | Escribe | Descripción |
---|---|---|
integralType | MathIntegralTypes | tipo integral |
Valor_devuelto
Nueva instancia de tipoIMathNaryOperator
Ejemplos
Ejemplo:
[C#]
IMathElement baseElement = new MathematicalText("𝑥");
IMathNaryOperator integral = baseElement.Integral(MathIntegralTypes.Contour);
Ver también
- interface IMathNaryOperator
- enum MathIntegralTypes
- class MathElementBase
- espacio de nombres Aspose.Slides.MathText
- asamblea Aspose.Slides
Integral(MathIntegralTypes, string, string, MathLimitLocations)
Toma la integral
public IMathNaryOperator Integral(MathIntegralTypes integralType, string lowerLimit,
string upperLimit, MathLimitLocations limitLocations)
Parámetro | Escribe | Descripción |
---|---|---|
integralType | MathIntegralTypes | tipo integral |
lowerLimit | String | Límite inferior de integral |
upperLimit | String | Límite superior de integral |
limitLocations | MathLimitLocations | ubicación de los límites |
Valor_devuelto
Nueva instancia de tipoIMathNaryOperator
Ejemplos
Ejemplo:
[C#]
IMathElement baseElement = new MathematicalText("𝑥");
IMathNaryOperator integral = baseElement.Integral(MathIntegralTypes.Simple, "1", "5", MathLimitLocations.UnderOver);
Ver también
- interface IMathNaryOperator
- enum MathIntegralTypes
- enum MathLimitLocations
- class MathElementBase
- espacio de nombres Aspose.Slides.MathText
- asamblea Aspose.Slides
Integral(MathIntegralTypes, string, string)
Toma la integral
public IMathNaryOperator Integral(MathIntegralTypes integralType, string lowerLimit,
string upperLimit)
Parámetro | Escribe | Descripción |
---|---|---|
integralType | MathIntegralTypes | tipo integral |
lowerLimit | String | Límite inferior de integral |
upperLimit | String | Límite superior de integral |
Valor_devuelto
Nueva instancia de tipoIMathNaryOperator
Ejemplos
Ejemplo:
[C#]
IMathElement baseElement = new MathematicalText("𝑥");
IMathNaryOperator integral = baseElement.Integral(MathIntegralTypes.Simple, "1", "5");
Ver también
- interface IMathNaryOperator
- enum MathIntegralTypes
- class MathElementBase
- espacio de nombres Aspose.Slides.MathText
- asamblea Aspose.Slides