------------------------------------------------------------------------------
| 496 | |
| 497 | //------------------------------------------------------------------------------ |
| 498 | void vtkTable::RemoveColumn(vtkIdType col) |
| 499 | { |
| 500 | int column = static_cast<int>(col); |
| 501 | this->RowData->RemoveArray(this->RowData->GetArrayName(column)); |
| 502 | } |
| 503 | |
| 504 | //------------------------------------------------------------------------------ |
| 505 | void vtkTable::RemoveAllColumns() |