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