MathArray
内容
[
隐藏
]MathArray 类
指定一组垂直的方程或任意数学对象
public sealed class MathArray : MathElementBase, IMathArray
构造函数
| 名称 | 描述 |
|---|---|
| MathArray(IEnumerable<IMathElement>) | 创建数学数组并将指定元素放入其中 |
| MathArray(IMathElement) | 创建数学数组并将指定元素放入其中 |
属性
| 名称 | 描述 |
|---|---|
| Arguments { get; } | 数组的项目集合 |
| BaseJustification { get; set; } | 指定数组相对于周围文本的对齐方式。数组外部的文本可以与数组对象的底部、顶部或中心对齐。默认值:Center |
| MaximumDistribution { get; set; } | 最大分布。当为 true 时,数组的间距会扩展到包含元素(页面、列、单元格等)的最大宽度。 |
| ObjectDistribution { get; set; } | 对象分布。当为 true 时,数组的内容会扩展到数组对象的最大宽度。 |
| RowSpacing { get; set; } | 数组行之间的间距。仅在 RowSpacingRule 设置为 3(Exactly)时使用,此时计量单位为点;或在设置为 Multiple 时,计量单位为半行。默认值:0 |
| RowSpacingRule { get; set; } | 数组元素之间的垂直间距类型。默认值:SingleLineGap |
方法
| 名称 | 描述 |
|---|---|
| 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#]
MathArray mathArray = new MathArray(new MathematicalText("item1"));