| Return Type | Function name | Arguments |
|---|---|---|
| unsigned int | hzHtmTbl::Rowcount | (void) |
Declared in file: hzDocument.h
Defined in file : hzDocHtml.cpp
Function Logic:
Function body:
unsigned int hzHtmTbl::Rowcount (void)
{
if (!m_nSubnodes)
{
return 0;
}
if (!m_nCols)
{
if (!m_nRows)
Colcount() ;
if (!m_nCols)
m_nRows = m_nSubnodes ;
else
m_nRows = m_nSubnodes - 1;
}
return m_nRows ;
}