RowGap

IMathMatrix.RowGap 属性

矩阵行之间垂直间距的值;如果 RowGapRule 设置为 3(“确切”),则单位被解释为 twips(1/20 点)。如果 RowGapRule 设置为 4(“倍数”),则单位被解释为半行。默认值:0

public uint RowGap { get; set; }

示例

示例:

[C#]
IMathMatrix matrix = new MathMatrix(2, 3);
matrix.RowGapRule = MathSpacingRules.Exactly;
matrix.RowGap = 20;

另请参见