InsertRowBefore()

MathMatrix::InsertRowBefore(int32_t) method

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

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

Arguments

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

Remarks

Example:

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

See Also