Return TypeFunction nameArguments
unsigned inthzHtmTbl::Rowcount(void)

Declared in file: hzDocument.h
Defined in file : hzDocHtml.cpp

Function Logic:

0:START 1:!m_nSubnodes 2:Return 0 3:!m_nCols 4:!m_nRows 5:hzHtmTbl::Colcount 6:!m_nCols 7:m_nRows 8:m_nRows 9:Return m_nRows

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 ;
}