------------------------------------------------------------------------------
| 629 | |
| 630 | //------------------------------------------------------------------------------ |
| 631 | void vtkTable::SetValueByName(vtkIdType row, const char* col, vtkVariant value) |
| 632 | { |
| 633 | int colIndex = -1; |
| 634 | this->RowData->GetAbstractArray(col, colIndex); |
| 635 | if (colIndex < 0) |
| 636 | { |
| 637 | vtkErrorMacro(<< "Could not find column named " << col); |
| 638 | return; |
| 639 | } |
| 640 | this->SetValue(row, colIndex, value); |
| 641 | } |
| 642 | |
| 643 | //------------------------------------------------------------------------------ |
| 644 | template <typename iterT> |