MathBlock

MathBlock class

指定包含在 MathParagraph 中并在其自己的行上开始的数学文本实例。 所有数学区域,包括方程式、表达式、方程式或表达式的数组以及公式都由数学块表示。

public sealed class MathBlock : MathElementBase, IMathBlock

构造函数

姓名描述
MathBlock()初始化 MathBlock 类的新实例。
MathBlock(IEnumerable<IMathElement>)创建一个新的数学块并将指定的元素放入其中
MathBlock(IMathElement)创建一个新的数学块并将指定元素放入其中

特性

姓名描述
Count { get; }获取集合中实际包含的子数学元素的数量。 只读Int32。
IsReadOnly { get; }返回 false,因为可以修改子元素集合。
Item { get; set; }获取或设置指定索引处的 IMathElement。

方法

姓名描述
Accent(char)设置重音符号(此元素顶部的字符)
Add(IMathElement)将数学元素添加到集合的末尾。
AsArgumentOfFunction(IMathElement)以使用此实例作为参数的指定函数
AsArgumentOfFunction(MathFunctionsOfOneArgument)以使用此实例作为参数的指定函数
AsArgumentOfFunction(string)以使用此实例作为参数的指定函数
AsArgumentOfFunction(MathFunctionsOfTwoArguments, IMathElement)将使用此实例的指定函数作为参数并指定附加参数
AsArgumentOfFunction(MathFunctionsOfTwoArguments, string)将使用此实例的指定函数作为参数并指定附加参数
Clear()从集合中删除所有元素。
Contains(IMathElement)确定集合是否包含特定值。
CopyTo(IMathElement[], int)复制到指定数组。
Delimit(char)用分隔符分隔子元素(不带括号)
Divide(IMathElement)使用此分子和指定分母创建分数
Divide(string)使用此分子和指定分母创建分数
Divide(IMathElement, MathFractionTypes)使用此分子和指定分母创建指定类型的分数
Divide(string, MathFractionTypes)使用此分子和指定分母创建指定类型的分数
Enclose()将数学元素括在括号中
override Enclose(char, char)将此块的子元素括在指定的字符中,例如括号或其他字符作为框架
Enclose(char, char, char)将此块的子元素括在指定字符中,例如括号或其他作为框架 并用分隔符分隔
Function(IMathElement)使用该实例作为函数名的参数的函数
Function(string)使用该实例作为函数名的参数的函数
GetChildren()获取子元素
Group()使用底部大括号将此元素放在组中
Group(char, MathTopBotPositions, MathTopBotPositions)使用分组字符(例如下大括号或另一个
IndexOf(IMathElement)确定集合中特定数学元素的索引。
Insert(int, IMathElement)将 MathElement 插入到集合中指定索引处。
Integral(MathIntegralTypes)无限制地取积分
Integral(MathIntegralTypes, IMathElement, IMathElement)取整数
Integral(MathIntegralTypes, string, string)取整数
Integral(MathIntegralTypes, IMathElement, IMathElement, MathLimitLocations)取整数
Integral(MathIntegralTypes, string, string, MathLimitLocations)取整数
override Join(IMathElement)用这个数学块连接一个数学元素
override Join(string)用这个数学块连接一个数学文本
JoinBlock(IMathBlock)连接另一个数学块
Nary(MathNaryOperatorTypes, IMathElement, IMathElement)创建 N 元运算符
Nary(MathNaryOperatorTypes, string, string)创建 N 元运算符
Overbar()在此元素顶部设置一个栏
Radical(IMathElement)根据指定参数指定给定度数的数学根。
Radical(string)根据指定参数指定给定度数的数学根。
Remove(IMathElement)从集合中删除特定对象的第一个匹配项。
RemoveAt(int)移除集合指定索引处的元素。
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()将此元素置于非可视框(逻辑分组) 用于对方程的组件或其他数学文本实例进行分组. 装箱对象可以(例如)用作带有或不带有对齐点的操作员模拟器, 用作换行点,或者被分组以不允许换行内破。
override ToMathArray()将子元素放入垂直数组
Underbar()在此元素的底部设置一个栏
WriteAsMathMl(Stream)将此MathBlock的内容保存为 MathML

例子

示例:

[C#]
MathBlock mathBlock = new MathBlock();

也可以看看