2.3.1.32 GETN_END_BRANCH


Name

GETN_END_BRANCH

Declaration

#define GETN_END_BRANCH(_NODE_NAME)					_tmpNode = _tmSave_##_NODE_NAME;

Remark

GETN_BEGIN_BRANCH creates a tree subbranch in the dialogbox.

All GETN control with GETN prefix can be added into the subbranch between GETN_BEGIN_BRANCH and GETN_END_BRANCH.

Parameters

_NODE_NAME
[input] the name of the new node to be added to the tree

Return

Examples

EX1

#include <GetNbox.h>
void GETN_END_BRANCH_ex1()
{
    GETN_TREE(testTree)
   
       GETN_CHECK(FitAllCurves, "Fit All Curves", 0)
   
       GETN_BEGIN_BRANCH(Fit, "Fitting Options")//Match GETN_END_BRANCH
           GETN_CHECK(FixIntercept, "Fix Intercept", 0)
           GETN_CHECK(FixSlope, "Fix Slope", 0)
       GETN_END_BRANCH(Fit)    //Match GETN_BEGIN_BRANCH

       GETN_NUM(Points, "Points", 20)
   
       if(GetNBox(testTree, NULL, NULL, NULL, NULL))
          out_tree(testTree);
}


See Also

GETN_BEGIN_BRANCH

Header to Include

GetNbox.h

Reference