get_RowSpacing()

IMathArray::get_RowSpacing() method

Spacing between rows of an array It is used only when RowSpacingRule is set to 3 Exactly in which case the unit of measure is points or Multiple in which case the unit of measure is half-lines. Default: 0

virtual uint32_t Aspose::Slides::MathText::IMathArray::get_RowSpacing()=0

Remarks

Example:

auto mathArray = System::MakeObject<MathArray>(System::MakeObject<MathematicalText>(u"item1"));
mathArray->set_RowSpacingRule(MathRowSpacingRule::Exactly);
mathArray->set_RowSpacing(10);

See Also