MathRadical

MathRadical class

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

public sealed class MathRadical : MathElementBase, IMathRadical

构造函数

名称描述
MathRadical(IMathElement, IMathElement)初始化 MathRadical 类的新实例。

属性

名称描述
Base { get; }基数参数
Degree { get; }度数参数
HideDegree { get; set; }隐藏度数 当为 true 时,度数不显示,如 √𝑥

方法

名称描述
Accent(char)设置此元素顶部的重音符号(字符)
AsArgumentOfFunction(IMathElement)使用此实例作为参数获取指定函数
AsArgumentOfFunction(MathFunctionsOfOneArgument)使用此实例作为参数获取指定函数
AsArgumentOfFunction(string)使用此实例作为参数获取指定函数
AsArgumentOfFunction(MathFunctionsOfTwoArguments, IMathElement)使用此实例作为参数和指定的附加参数获取指定函数
AsArgumentOfFunction(MathFunctionsOfTwoArguments, string)使用此实例作为参数和指定的附加参数获取指定函数
Divide(IMathElement)使用此分子和指定分母创建一个分数
Divide(string)使用此分子和指定分母创建一个分数
Divide(IMathElement, MathFractionTypes)使用此分子和指定分母创建指定类型的分数
Divide(string, MathFractionTypes)使用此分子和指定分母创建指定类型的分数
Enclose()将数学元素用括号括起来
virtual Enclose(char, char)使用指定字符(如括号或其他字符)将数学元素括起来
Function(IMathElement)使用此实例作为函数名称获取一个参数的函数
Function(string)使用此实例作为函数名称获取一个参数的函数
GetChildren()获取子元素
Group()使用底部大括号将此元素放入组中
Group(char, MathTopBotPositions, MathTopBotPositions)使用分组字符(例如底部大括号或其他)将此元素放入组中
Integral(MathIntegralTypes)获取无极限的积分
Integral(MathIntegralTypes, IMathElement, IMathElement)获取积分
Integral(MathIntegralTypes, string, string)获取积分
Integral(MathIntegralTypes, IMathElement, IMathElement, MathLimitLocations)获取积分
Integral(MathIntegralTypes, string, string, MathLimitLocations)获取积分
virtual Join(IMathElement)连接一个数学元素并形成一个数学块
virtual Join(string)连接一个数学文本并形成一个数学块
Nary(MathNaryOperatorTypes, IMathElement, IMathElement)创建一个 N-元运算符
Nary(MathNaryOperatorTypes, string, string)创建一个 N-元运算符
Overbar()在此元素的顶部设置一条横线
Radical(IMathElement)指定给定参数的指定度数的数学根。
Radical(string)指定给定参数的指定度数的数学根。
SetLowerLimit(IMathElement)获取下限
SetLowerLimit(string)获取下限
SetSubscript(IMathElement)创建下标
SetSubscript(string)创建下标
SetSubSuperscriptOnTheLeft(IMathElement, IMathElement)在左侧创建下标和上标
SetSubSuperscriptOnTheLeft(string, string)在左侧创建下标和上标
SetSubSuperscriptOnTheRight(IMathElement, IMathElement)在右侧创建下标和上标
SetSubSuperscriptOnTheRight(string, string)在右侧创建下标和上标
SetSuperscript(IMathElement)创建上标
SetSuperscript(string)创建上标
SetUpperLimit(IMathElement)获取上限
SetUpperLimit(string)获取上限
ToBorderBox()将此元素放入边框框中
ToBorderBox(bool, bool, bool, bool, bool, bool, bool, bool)将此元素放入边框框中
ToBox()将此元素放入一个非视觉框(逻辑分组),用于分组方程或其他数学文本的实例。一个框对象可以(例如)作为一个运算符仿真器使用,带或不带对齐点,作为换行点,或者被分组以不允许换行。
virtual ToMathArray()放入垂直数组中
Underbar()在此元素的底部设置一条横线

示例

示例:

[C#]
MathRadical radical = new MathRadical(new MathematicalText("x"), new MathematicalText("3"));

另见