set_RowGap()

MathMatrix::set_RowGap(uint32_t) method

The value of vertical spacing between rows of a matrix; If the RowGapRule is set to 3 ("Exactly"), then the unit is interpreted as twips (1/20th of a point) If the RowGapRule is set to 4 ("Multiple"), then the unit is interpreted as half-lines. Default: 0

void Aspose::Slides::MathText::MathMatrix::set_RowGap(uint32_t value) override

Remarks

Example:

auto matrix = System::MakeObject<MathMatrix>(2, 3);
matrix->set_RowGapRule(MathSpacingRules::Exactly);
matrix->set_RowGap(20);

See Also