DeleteRow()

IMathMatrix::DeleteRow(int32_t) method

Deletes the specified row

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

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