RowGap

MathMatrix.RowGap property

El valor del espaciado vertical entre filas de una matriz; Si el RowGapRule se establece en 3 (“Exactamente”), entonces la unidad se interpreta como twips (1/20 de un punto). Si el RowGapRule se establece en 4 (“Múltiple”), entonces la unidad se interpreta como medio líneas. Predeterminado: 0

public uint RowGap { get; set; }

Ejemplos

Ejemplo:

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

Véase también