------------------------------------------------------------------------------
| 513 | |
| 514 | //------------------------------------------------------------------------------ |
| 515 | const char* vtkTable::GetColumnName(vtkIdType col) |
| 516 | { |
| 517 | int column = static_cast<int>(col); |
| 518 | return this->RowData->GetArrayName(column); |
| 519 | } |
| 520 | |
| 521 | //------------------------------------------------------------------------------ |
| 522 | vtkAbstractArray* vtkTable::GetColumnByName(const char* name) |