![]() |
![]() An Information Portal to Biological Macromolecular Structures |
|
PDB Home |
Contact Us ![]() |
![]() |
Software Tools Home | Dictionary Home | PDBML Home |
![]() |
#include "ISTable.h"
int ISTable::RemoveRow(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->RemoveRow(i);
}
RemoveRow will remove the data from a row, and then the row itself. This method is not recommended. See ``Remarks'' below.
rowIndex | The index of the row to be deleted. |
A negative value indicates an error or warning.
If there is an index on the table, then it would be corrupted after using this method.
See also: | ClearRow |
---|---|
RemoveRow | |
CompressTable |