![]() |
![]() An Information Portal to Biological Macromolecular Structures |
|
PDB Home |
Contact Us ![]() |
![]() |
Software Tools Home | Dictionary Home | PDBML Home |
![]() |
#include "ISTable.h"
int ISTable::DeleteRow(int rowIndex);
#include "ISTable.h"
...
ISTable * pTable = new ISTable();
... // do table maniputation
// delete the first 1/2 rows
for (int i = 0; i < (pTable->GetNumRows() / 2); i++) {
pTable->DeleteRow(i);
}
DeleteRow will remove the data from a row, and then the row itself, but only logicaly. Row is still in memory, marked as deleted.
rowIndex | The index of the row to be deleted. |
A negative value indicates an error or warning.
See also: | ClearRow |
---|---|
RemoveRow | |
CompressTable |