RowSpacing

IMathArray.RowSpacing 属性

数组行之间的间距。仅在 RowSpacingRule 设置为 3 的情况下使用,在这种情况下,计量单位为点;或者在 Multiple 的情况下,计量单位为半行。默认值:0

public uint RowSpacing { get; set; }

示例

示例:

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

另请参阅