set_ColumnGap()

MathMatrix::set_ColumnGap(uint32_t) method

The value of horizontal spacing between columns of a matrix; If the ColumnGapRule is set to 3 ("Exactly"), then the unit is interpreted as twips (1/20th of a point) If the ColumnGapRule is set to 4 ("Multiple"), then the unit is interpreted as number of 0.5 em increments. In other cases ignored. Default: 0

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

Remarks

Example:

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

See Also