RowSpacing

MathArray.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;

另请参阅