------------------------------------------------------------------------------
| 541 | |
| 542 | //------------------------------------------------------------------------------ |
| 543 | vtkAbstractArray* vtkTable::GetColumn(vtkIdType col) |
| 544 | { |
| 545 | int column = static_cast<int>(col); |
| 546 | return this->RowData->GetAbstractArray(column); |
| 547 | } |
| 548 | |
| 549 | // |
| 550 | // Table single entry functions |