get_RowGap()

IMathMatrix::get_RowGap() 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

virtual uint32_t Aspose::Slides::MathText::IMathMatrix::get_RowGap()=0

Remarks

Example:

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

See Also