Divide
内容
[
隐藏
]Divide(IMathElement)
使用此分子和指定分母创建分数
public IMathFraction Divide(IMathElement denominator)
范围 | 类型 | 描述 |
---|---|---|
denominator | IMathElement | 分母 |
返回值
新分数
例子
示例:
[C#]
IMathElement numerator = new MathematicalText("x");
IMathElement denumerator = new MathematicalText("y");
IMathFraction fraction = numerator.Divide(denumerator);
也可以看看
- interface IMathFraction
- interface IMathElement
- class MathElementBase
- 命名空间 Aspose.Slides.MathText
- 部件 Aspose.Slides
Divide(string)
使用此分子和指定分母创建分数
public IMathFraction Divide(string denominator)
范围 | 类型 | 描述 |
---|---|---|
denominator | String | 分母 |
返回值
新分数
例子
示例:
[C#]
IMathElement numerator = new MathematicalText("x");
IMathFraction fraction = numerator.Divide("y");
也可以看看
- interface IMathFraction
- class MathElementBase
- 命名空间 Aspose.Slides.MathText
- 部件 Aspose.Slides
Divide(IMathElement, MathFractionTypes)
使用此分子和指定分母创建指定类型的分数
public IMathFraction Divide(IMathElement denominator, MathFractionTypes fractionType)
范围 | 类型 | 描述 |
---|---|---|
分母 | IMathElement | 分母 |
fractionType | MathFractionTypes | 分数类型:条形、无条形、倾斜、线性 |
返回值
新分数
例子
示例:
[C#]
IMathElement numerator = new MathematicalText("x");
IMathElement denumerator = new MathematicalText("y");
IMathFraction fraction = numerator.Divide(denumerator, MathFractionTypes.Linear);
也可以看看
- interface IMathFraction
- interface IMathElement
- enum MathFractionTypes
- class MathElementBase
- 命名空间 Aspose.Slides.MathText
- 部件 Aspose.Slides
Divide(string, MathFractionTypes)
使用此分子和指定分母创建指定类型的分数
public IMathFraction Divide(string denominator, MathFractionTypes fractionType)
范围 | 类型 | 描述 |
---|---|---|
分母 | String | 分母 |
fractionType | MathFractionTypes | 分数类型:条形、无条形、倾斜、线性 |
返回值
新分数
例子
示例:
[C#]
IMathElement numerator = new MathematicalText("x");
IMathFraction fraction = numerator.Divide("y", MathFractionTypes.Linear);
也可以看看
- interface IMathFraction
- enum MathFractionTypes
- class MathElementBase
- 命名空间 Aspose.Slides.MathText
- 部件 Aspose.Slides