2.2.3.17.42 TreeNode::tagName

ClassName

TreeNode

AccessType

public

Name

tagName

Declaration

string tagName

Remark

Examples

EX1

void TreeNode_tagName_ex1()
{
    Tree myTree1;
    TreeNode tn1;
    tn1 = myTree1.AddTextNode("Hello", "Name", 1);
    out_tree(myTree1);
 
    out_str("tagName = " + tn1.tagName);
}

Description

read only. Text name of the node.

Header to Include

origin.h

See Also

Reference