RowGapRule

MathMatrix.RowGapRule property

The type of vertical spacing between rows of a matrix; Vertical spacing units can be lines or points (stored as twips). Default: SingleSpacingGap (0)

public MathSpacingRules RowGapRule { get; set; }

Examples

Example:

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

See Also