delete_column method

delete_column

Deletes the specified column

def delete_column(self, column_index):
    ...
ParameterTypeDescription
column_indexintThe zero-based index of the column to delete.

Exceptions

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

See Also