GETN_NUM

 

Name

GETN_NUM

Declaration

#define GETN_NUM(_NODE_NAME, _NODE_LABEL, _DEFAULT_VAL) _tmpSubNode = _tmpNode.AddNumericNode(_DEFAULT_VAL, #_NODE_NAME, TRGP_DOUBLE);TREE_ADD_LABEL(_NODE_LABEL);

Remark

This macro creates a numeric edit box in the dialogbox.

Parameters

_NODE_NAME
[input] the name of the new node to be added to the tree
_NODE_LABEL
[input] the string value to show the numeric edit box name in the dialogbox
_DEFAULT_VAL
[input] numeric contents as the default value to show in the edit box

Return

Examples

EX1

#include <GetNBox.h>
void GETN_NUM_ex1()
{
    GETN_BOX( treeTest );
    double ff = 1.23;
       GETN_NUM(Factor, "Scale Factor", ff)
    if( GetNBox( treeTest ))
        out_tree( treeTest );
}

See Also

GETN_OPTION_NUM_FORMAT

header to Include

GetNbox.h

Reference