DeleteRow()

MathMatrix::DeleteRow(int32_t) method

Deletes the specified row

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

Arguments

ParameterTypeDescription
rowIndexint32_tThe zero-based index of the row to delete.

Remarks

Example:

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

See Also