ColumnGap

IMathMatrix.ColumnGap 属性

矩阵列之间的水平间距的值;如果 ColumnGapRule 设置为 3 (“Exactly”),则单位解释为 twips (1/20 个点)。如果 ColumnGapRule 设置为 4 (“Multiple”),则单位解释为 0.5 em 增量的数量。在其他情况下被忽略。默认值:0

public uint ColumnGap { get; set; }

示例

示例:

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

另请参阅