Radical

Radical(IMathElement)

根据指定参数指定给定度数的数学根。

public IMathRadical Radical(IMathElement degree)
范围类型描述
degreeIMathElementRadical

返回值

类型的新实例IMathRadical

例子

示例:

[C#]
IMathElement baseElement = new MathematicalText("2px");
IMathElement degree = new MathematicalText("y");
var radical = baseElement.Radical(degree);

也可以看看


Radical(string)

根据指定参数指定给定度数的数学根。

public IMathRadical Radical(string degree)
范围类型描述
degreeStringRadical

返回值

类型的新实例IMathRadical

例子

示例:

[C#]
IMathElement baseElement = new MathematicalText("2px");
var radical = baseElement.Radical("3");

也可以看看