InsertRowAfter()

MathMatrix::InsertRowAfter(int32_t) method

Insert a new row after the specified one Initially all elements in the new row are null.

void Aspose::Slides::MathText::MathMatrix::InsertRowAfter(int32_t rowIndex) override

Arguments

ParameterTypeDescription
rowIndexint32_tIndex of the row after which to insert a new one

Remarks

Example:

auto matrix = System::MakeObject<MathMatrix>(2, 3);
matrix->InsertRowAfter(1);

See Also