DeleteRow
MathMatrix.DeleteRow method
Deletes the specified row
public void DeleteRow(int rowIndex)
Parameter | Type | Description |
---|---|---|
rowIndex | Int32 | The zero-based index of the row to delete. |
Exceptions
exception | condition |
---|---|
InvalidOperationException | When you try to delete the last single row in the matrix |
ArgumentOutOfRangeException | If rowIndex less than zero or greater or equal to the RowCount |
Examples
Example:
[C#]
IMathMatrix matrix = new MathMatrix(2, 3);
matrix.DeleteRow(0);
See Also
- class MathMatrix
- namespace Aspose.Slides.MathText
- assembly Aspose.Slides