RowGap

IMathMatrix.RowGap property

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

public uint RowGap { get; set; }

Ejemplos

Ejemplo:

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

Ver también