------------------------------------------------------------------------------
| 84 | |
| 85 | //------------------------------------------------------------------------------ |
| 86 | void vtkConvertSelection::SetArrayName(const char* name) |
| 87 | { |
| 88 | if (!this->ArrayNames) |
| 89 | { |
| 90 | this->ArrayNames = vtkStringArray::New(); |
| 91 | } |
| 92 | this->ArrayNames->Initialize(); |
| 93 | this->ArrayNames->InsertNextValue(name); |
| 94 | } |
| 95 | |
| 96 | //------------------------------------------------------------------------------ |
| 97 | const char* vtkConvertSelection::GetArrayName() |