TreeNode::XML

ClassName

TreeNode

AccessType

public

Name

XML

Declaration

string XML

Remark

init treenode from XML string or to get as XML string

Examples

EX1

void TreeNode_XML_ex1()
{
    Tree        tr;
    TreeNode      trNode;
    trNode = tr.AddNode("Node1", 1);
    
    string strXML = tr.XML;
    out_str(strXML);
}

Description

Set XML string for tree node or to get as XML string

Header to Include

origin.h

See Also

Reference