| Return Type | Function name | Arguments |
|---|---|---|
| hzEcode | hdsNavtree::ExportDataScript | (hzChain&,) |
Declared in file: hzDissemino.h
Defined in file : hdsNavtree.cpp
Function Logic:
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 ;
}