Return TypeFunction nameArguments
hzEcodehdsNavtree::ExportDataScript(hzChain&,)

Declared in file: hzDissemino.h
Defined in file : hdsNavtree.cpp

Function Logic:

0:START 1:!this 2:hzexit hzMapS::Count 3:!m_ItemsByName.Count() 4:Return E_NODATA 5:items hdsNavtree::_procTreeitem items 6:Return E_OK

Function body:

hzEcode hdsNavtree::ExportDataScript (hzChain& J)
{
   _hzfunc("hdsNavtree::ExportDataScript") ;
   if (!this)
       hzexit(E_CORRUPT, "No instance") ;
   if (!m_ItemsByName.Count())
       return E_NODATA ;
   hzString    root ;
   J << "var ntX=new Array();\nntX=[" ;
   _procTreeitem(J, root) ;
   J << "\n\t];\n" ;
   return E_OK ;
}