![]() |
![]() An Information Portal to Biological Macromolecular Structures |
|
PDB Home |
Contact Us ![]() |
![]() |
Software Tools Home | Dictionary Home | PDBML Home |
![]() |
#include "ISTable.h"
int ISTable::GetNumRows();
#include "ISTable.h"
ISTable * pTable = new ISTable("MyTable");
// Add some columns and stuff, then loop over the rows
for (int i = 0; i < pTable->GetNumRows(); i++) {
// Do something to each row
}
GetNumRows returns the number of rows in the table. Each row might not be complete.
No Arguments |
The number of rows in the table, i.e. the length of the longest column.
See also: | GetNumColumns |
---|