MCPcopy Create free account
hub / github.com/Kitware/VTK / SetDataArrayStatus

Method SetDataArrayStatus

IO/Geometry/vtkTecplotReader.cxx:636–648  ·  view source on GitHub ↗

------------------------------------------------------------------------------

Source from the content-addressed store, hash-verified

634
635//------------------------------------------------------------------------------
636void 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//------------------------------------------------------------------------------
651void vtkTecplotReader::PrintSelf(ostream& os, vtkIndent indent)

Callers 1

TestTecplotReaderFunction · 0.80

Calls 2

EnableArrayMethod · 0.80
DisableArrayMethod · 0.80

Tested by 1

TestTecplotReaderFunction · 0.64