------------------------------------------------------------------------------
| 703 | |
| 704 | //------------------------------------------------------------------------------ |
| 705 | vtkVariant vtkTable::GetValueByName(vtkIdType row, const char* col) |
| 706 | { |
| 707 | int colIndex = GetColumnIndex(col); |
| 708 | if (colIndex < 0) |
| 709 | { |
| 710 | return vtkVariant(); |
| 711 | } |
| 712 | return this->GetValue(row, colIndex); |
| 713 | } |
| 714 | |
| 715 | //------------------------------------------------------------------------------ |
| 716 | vtkTable* vtkTable::GetData(vtkInformation* info) |