Integral
内容
[
隐藏
]Integral(MathIntegralTypes, IMathElement, IMathElement, MathLimitLocations)
取整数
public IMathNaryOperator Integral(MathIntegralTypes integralType, IMathElement lowerLimit,
IMathElement upperLimit, MathLimitLocations limitLocations)
范围 | 类型 | 描述 |
---|---|---|
integralType | MathIntegralTypes | 积分类型 |
lowerLimit | IMathElement | 积分下限 |
upperLimit | IMathElement | 积分上限 |
limitLocations | MathLimitLocations | 限制位置 |
返回值
类型的新实例IMathNaryOperator
例子
示例:
[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);
也可以看看
- interface IMathNaryOperator
- enum MathIntegralTypes
- enum MathLimitLocations
- interface IMathElement
- 命名空间 Aspose.Slides.MathText
- 部件 Aspose.Slides
Integral(MathIntegralTypes, IMathElement, IMathElement)
取整数
public IMathNaryOperator Integral(MathIntegralTypes integralType, IMathElement lowerLimit,
IMathElement upperLimit)
范围 | 类型 | 描述 |
---|---|---|
integralType | MathIntegralTypes | 积分类型 |
lowerLimit | IMathElement | 积分下限 |
upperLimit | IMathElement | 积分上限 |
返回值
类型的新实例IMathNaryOperator
例子
示例::::47::
[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);
也可以看看
- interface IMathNaryOperator
- enum MathIntegralTypes
- interface IMathElement
- 命名空间 Aspose.Slides.MathText
- 部件 Aspose.Slides
Integral(MathIntegralTypes)
无限制地取积分
public IMathNaryOperator Integral(MathIntegralTypes integralType)
范围 | 类型 | 描述 |
---|---|---|
integralType | MathIntegralTypes | 积分类型 |
返回值
类型的新实例IMathNaryOperator
例子
示例:
[C#]
IMathElement baseElement = new MathematicalText("𝑥");
IMathNaryOperator integral = baseElement.Integral(MathIntegralTypes.Contour);
也可以看看
- interface IMathNaryOperator
- enum MathIntegralTypes
- interface IMathElement
- 命名空间 Aspose.Slides.MathText
- 部件 Aspose.Slides
Integral(MathIntegralTypes, string, string, MathLimitLocations)
取整数
public IMathNaryOperator Integral(MathIntegralTypes integralType, string lowerLimit,
string upperLimit, MathLimitLocations limitLocations)
范围 | 类型 | 描述 |
---|---|---|
integralType | MathIntegralTypes | 积分类型 |
lowerLimit | String | 积分下限 |
upperLimit | String | 积分上限 |
limitLocations | MathLimitLocations | 限制位置 |
返回值
类型的新实例IMathNaryOperator
例子
示例:
[C#]
IMathElement baseElement = new MathematicalText("𝑥");
IMathNaryOperator integral = baseElement.Integral(MathIntegralTypes.Simple, "1", "5", MathLimitLocations.UnderOver);
也可以看看
- interface IMathNaryOperator
- enum MathIntegralTypes
- enum MathLimitLocations
- interface IMathElement
- 命名空间 Aspose.Slides.MathText
- 部件 Aspose.Slides
Integral(MathIntegralTypes, string, string)
取整数
public IMathNaryOperator Integral(MathIntegralTypes integralType, string lowerLimit,
string upperLimit)
范围 | 类型 | 描述 |
---|---|---|
integralType | MathIntegralTypes | 积分类型 |
lowerLimit | String | 积分下限 |
upperLimit | String | 积分上限 |
返回值
类型的新实例IMathNaryOperator
例子
示例::::47::
[C#]
IMathElement baseElement = new MathematicalText("𝑥");
IMathNaryOperator integral = baseElement.Integral(MathIntegralTypes.Simple, "1", "5");
也可以看看
- interface IMathNaryOperator
- enum MathIntegralTypes
- interface IMathElement
- 命名空间 Aspose.Slides.MathText
- 部件 Aspose.Slides