RowSpacing

MathArray.RowSpacing property

数组行之间的间距 仅当 RowSpacingRule 设置为 3 时才使用,在这种情况下,度量单位是点 或倍数,在这种情况下,度量单位是半线。 默认值:0

public uint RowSpacing { get; set; }

例子

示例:

[C#]
IMathArray mathArray = new MathArray(new MathematicalText("item1"));
mathArray.RowSpacingRule = MathRowSpacingRule.Exactly;
mathArray.RowSpacing = 10;

也可以看看