IMathArray

IMathArray 接口

指定一个垂直数组,包含方程式或任何数学对象

public interface IMathArray : IMathElement

属性

名称描述
Arguments { get; }数组的项集合
AsIMathElement { get; }允许获取基础 IMathElement 接口 IMathElement
BaseJustification { get; set; }指定数组相对于周围文本的对齐方式。数组外的文本可以与数组对象的底部、顶部或中心对齐。默认值:Center
MaximumDistribution { get; set; }最大分布。当为 true 时,数组会被拉伸至其包含元素(页面、列、单元格等)的最大宽度。
ObjectDistribution { get; set; }对象分布。当为 true 时,数组的内容会被拉伸至数组对象的最大宽度。
RowSpacing { get; set; }数组行之间的间距。仅在 RowSpacingRule 设置为 3 Exactly 时使用,此时度量单位为点;或在设置为 Multiple 时,度量单位为半行。默认值:0
RowSpacingRule { get; set; }数组元素之间垂直间距的类型

示例

示例:

[C#]
IMathArray mathArray = new MathArray(new MathematicalText("item1"));

另请参阅