Query: blt_treegetnode
OS: debian
Section: 3
Format: Original Unix Latex Style Formatted with HTML and a Horizontal Scroll Bar
Blt_TreeGetNode(3) BLT Library Procedures Blt_TreeGetNode(3) __________________________________________________________________________________________________________________________________________________NAMEBlt_TreeGetNode - Finds the node from the ID.SYNOPSIS#include <bltTree.h> Blt_TreeNode Blt_TreeGetNode(tree, number)ARGUMENTSBlt_Tree tree (in) Tree containing the requested node. unsigned int number (in) Serial number of the requested node. _________________________________________________________________DESCRIPTIONThis procedure returns a node in a tree object based upon a give serial number. The node is searched using the serial number. The arguments are as follows: tree The tree containing the requested node. number The serial number of the requested node.RETURNSThe node represented by the given serial number is returned. If no node with that ID exists in tree then NULL is returned.EXAMPLEThe following example gets the node from a serial number. unsigned int number; Blt_TreeNode node; Blt_TreeToken token; node = Blt_TreeGetNode(token, number); if (node == NULL) { printf("no node with ID %d exists ", number); } else { printf("node found: label is %s ", Blt_TreeNodeLabel(node)); }KEYWORDSTcl_TreeCreateNode, Tcl_TreeDeleteNodeBLT2.4 Blt_TreeGetNode(3)