RowGap

MathMatrix.RowGap 属性

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

public uint RowGap { get; set; }

示例

示例:

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

相关内容