IMathRadical

IMathRadical 接口

指定根函数,由基数和可选的指数组成。根对象的示例为 √𝑥。

public interface IMathRadical : IMathElement

属性

名称描述
AsIMathElement { get; }允许获取基础 IMathElement 接口 IMathElement
Base { get; }基础参数
Degree { get; }指数参数
HideDegree { get; set; }隐藏指数 当为 true 时,不显示指数,如 √𝑥

示例

示例:

[C#]
IMathRadical radical = new MathematicalText("x").Radical("3"); // 立方根

另请参见