| Return Type | Function name | Arguments |
|---|---|---|
| unsigned int | hzHtmTbl::Colcount | (void) |
Declared in file: hzDocument.h
Defined in file : hzDocHtml.cpp
Function Logic:
Function body:
unsigned int hzHtmTbl::Colcount (void)
{
hzHtmElem* pE ;
hzHtmElem* pC ;
if (!m_nCols)
{
pE = GetFirstChild() ;
for (pC = pE->GetFirstChild() ; pC ; pC = pC->Sibling())
{
if (pC->Type() != HTAG_TH)
continue ;
m_nCols++ ;
}
}
return m_nCols ;
}