delete_row method

delete_row

Deletes the specified row

def delete_row(self, row_index):
    ...
ParameterTypeDescription
row_indexintThe zero-based index of the row to delete.

Examples

Example:

Exceptions

ExceptionDescription
RuntimeError(Proxy error(InvalidOperationException))When you try to delete the last single row in the matrix
RuntimeError(Proxy error(ArgumentOutOfRangeException))If rowIndex less than zero or greater or equal to the RowCount

See Also