Radical
Radical(IMathElement)
根据指定参数指定给定度数的数学根。
public IMathRadical Radical(IMathElement degree)
范围 | 类型 | 描述 |
---|---|---|
degree | IMathElement | Radical |
返回值
类型的新实例IMathRadical
例子
示例:
[C#]
IMathElement baseElement = new MathematicalText("2px");
IMathElement degree = new MathematicalText("y");
var radical = baseElement.Radical(degree);
也可以看看
- interface IMathRadical
- interface IMathElement
- class MathElementBase
- 命名空间 Aspose.Slides.MathText
- 部件 Aspose.Slides
Radical(string)
根据指定参数指定给定度数的数学根。
public IMathRadical Radical(string degree)
范围 | 类型 | 描述 |
---|---|---|
degree | String | Radical |
返回值
类型的新实例IMathRadical
例子
示例:
[C#]
IMathElement baseElement = new MathematicalText("2px");
var radical = baseElement.Radical("3");
也可以看看
- interface IMathRadical
- class MathElementBase
- 命名空间 Aspose.Slides.MathText
- 部件 Aspose.Slides