Integral
Contents
[
Hide
]Integral(MathIntegralTypes, IMathElement, IMathElement, MathLimitLocations)
Takes the integral
public IMathNaryOperator Integral(MathIntegralTypes integralType, IMathElement lowerLimit,
IMathElement upperLimit, MathLimitLocations limitLocations)
Parameter | Type | Description |
---|---|---|
integralType | MathIntegralTypes | Integral type |
lowerLimit | IMathElement | Lower limit of integral |
upperLimit | IMathElement | Upper limit of integral |
limitLocations | MathLimitLocations | location of limits |
Return Value
New instance of type IMathNaryOperator
Examples
Example:
[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);
See Also
- interface IMathNaryOperator
- enum MathIntegralTypes
- enum MathLimitLocations
- interface IMathElement
- namespace Aspose.Slides.MathText
- assembly Aspose.Slides
Integral(MathIntegralTypes, IMathElement, IMathElement)
Takes the integral
public IMathNaryOperator Integral(MathIntegralTypes integralType, IMathElement lowerLimit,
IMathElement upperLimit)
Parameter | Type | Description |
---|---|---|
integralType | MathIntegralTypes | Integral type |
lowerLimit | IMathElement | Lower limit of integral |
upperLimit | IMathElement | Upper limit of integral |
Return Value
New instance of type IMathNaryOperator
Examples
Example:
[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);
See Also
- interface IMathNaryOperator
- enum MathIntegralTypes
- interface IMathElement
- namespace Aspose.Slides.MathText
- assembly Aspose.Slides
Integral(MathIntegralTypes)
Takes the integral without limits
public IMathNaryOperator Integral(MathIntegralTypes integralType)
Parameter | Type | Description |
---|---|---|
integralType | MathIntegralTypes | Integral type |
Return Value
New instance of type IMathNaryOperator
Examples
Example:
[C#]
IMathElement baseElement = new MathematicalText("𝑥");
IMathNaryOperator integral = baseElement.Integral(MathIntegralTypes.Contour);
See Also
- interface IMathNaryOperator
- enum MathIntegralTypes
- interface IMathElement
- namespace Aspose.Slides.MathText
- assembly Aspose.Slides
Integral(MathIntegralTypes, string, string, MathLimitLocations)
Takes the integral
public IMathNaryOperator Integral(MathIntegralTypes integralType, string lowerLimit,
string upperLimit, MathLimitLocations limitLocations)
Parameter | Type | Description |
---|---|---|
integralType | MathIntegralTypes | Integral type |
lowerLimit | String | Lower limit of integral |
upperLimit | String | Upper limit of integral |
limitLocations | MathLimitLocations | location of limits |
Return Value
New instance of type IMathNaryOperator
Examples
Example:
[C#]
IMathElement baseElement = new MathematicalText("𝑥");
IMathNaryOperator integral = baseElement.Integral(MathIntegralTypes.Simple, "1", "5", MathLimitLocations.UnderOver);
See Also
- interface IMathNaryOperator
- enum MathIntegralTypes
- enum MathLimitLocations
- interface IMathElement
- namespace Aspose.Slides.MathText
- assembly Aspose.Slides
Integral(MathIntegralTypes, string, string)
Takes the integral
public IMathNaryOperator Integral(MathIntegralTypes integralType, string lowerLimit,
string upperLimit)
Parameter | Type | Description |
---|---|---|
integralType | MathIntegralTypes | Integral type |
lowerLimit | String | Lower limit of integral |
upperLimit | String | Upper limit of integral |
Return Value
New instance of type IMathNaryOperator
Examples
Example:
[C#]
IMathElement baseElement = new MathematicalText("𝑥");
IMathNaryOperator integral = baseElement.Integral(MathIntegralTypes.Simple, "1", "5");
See Also
- interface IMathNaryOperator
- enum MathIntegralTypes
- interface IMathElement
- namespace Aspose.Slides.MathText
- assembly Aspose.Slides