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

Method RemoveColumn

Common/DataModel/vtkTable.cxx:498–502  ·  view source on GitHub ↗

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

Source from the content-addressed store, hash-verified

496
497//------------------------------------------------------------------------------
498void vtkTable::RemoveColumn(vtkIdType col)
499{
500 int column = static_cast<int>(col);
501 this->RowData->RemoveArray(this->RowData->GetArrayName(column));
502}
503
504//------------------------------------------------------------------------------
505void vtkTable::RemoveAllColumns()

Callers 4

InsertFieldMethod · 0.80
onColumnsRemovedMethod · 0.80
ReverseTableColumnsMethod · 0.80
RemoveHalfOfColumnsFunction · 0.80

Calls 2

RemoveArrayMethod · 0.45
GetArrayNameMethod · 0.45

Tested by 1

RemoveHalfOfColumnsFunction · 0.64