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);
参见
- 接口 IMathNaryOperator
- 枚举 MathIntegralTypes
- 接口 IMathElement
- 枚举 MathLimitLocations
- 类 MathElementBase
- 命名空间 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
示例
示例:
[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);
参见
- 接口 IMathNaryOperator
- 枚举 MathIntegralTypes
- 接口 IMathElement
- 类 MathElementBase
- 命名空间 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);
参见
- 接口 IMathNaryOperator
- 枚举 MathIntegralTypes
- 类 MathElementBase
- 命名空间 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);
参见
- 接口 IMathNaryOperator
- 枚举 MathIntegralTypes
- 枚举 MathLimitLocations
- 类 MathElementBase
- 命名空间 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
示例
示例:
[C#]
IMathElement baseElement = new MathematicalText("𝑥");
IMathNaryOperator integral = baseElement.Integral(MathIntegralTypes.Simple, "1", "5");