------------------------------------------------------------------------------
| 634 | |
| 635 | //------------------------------------------------------------------------------ |
| 636 | void vtkTecplotReader::SetDataArrayStatus(const char* arayName, int bChecked) |
| 637 | { |
| 638 | vtkDebugMacro("Set cell array \"" << arayName << "\" status to: " << bChecked); |
| 639 | |
| 640 | if (bChecked) |
| 641 | { |
| 642 | this->DataArraySelection->EnableArray(arayName); |
| 643 | } |
| 644 | else |
| 645 | { |
| 646 | this->DataArraySelection->DisableArray(arayName); |
| 647 | } |
| 648 | } |
| 649 | |
| 650 | //------------------------------------------------------------------------------ |
| 651 | void vtkTecplotReader::PrintSelf(ostream& os, vtkIndent indent) |