InsertRowBefore()

IMathMatrix::InsertRowBefore(int32_t) method

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

virtual void Aspose::Slides::MathText::IMathMatrix::InsertRowBefore(int32_t rowIndex)=0

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