DeleteColumn()

IMathMatrix::DeleteColumn(int32_t) method

Deletes the specified column

virtual void Aspose::Slides::MathText::IMathMatrix::DeleteColumn(int32_t columnIndex)=0

Arguments

ParameterTypeDescription
columnIndexint32_tThe zero-based index of the column to delete.

Remarks

Example:

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

See Also