2.3.1.99 GETN_XYRANGE_COMPLEX


Name

GETN_XYRANGE_COMPLEX

Declaration

#define	GETN_XYRANGE_COMPLEX(_NODE_NAME, _NODE_LABEL, _NUM_DATA, _VALUE)		octree_create_composite_range_node(&_tmpSubNode, &_tmpNode, #_NODE_NAME, _NODE_LABEL, _NUM_DATA, CRT_COMPLEX, _VALUE);

Remark

This macro allow user to select XYRangeComplex as data

Parameters

_NODE_NAME
[input] The node name of the control
_NODE_LABEL
[input] Label of the control
_NUM_DATA
[input] The number of subrange in this data range
_VALUE
[input] Initial value of the DataRange. If not empty, function okutil_getn_update_ranges should be called.

Return

Examples

EX1

#include <GetNbox.h>
void GETN_XYRANGE_COMPLEX_ex1()
{
    GETN_BOX(trRoot)
    GETN_XYRANGE_COMPLEX(Input, "Input Data", 1, "")
    if ( GetNBox(trRoot) )
        out_tree(trRoot);
    return;
}

See Also

GETN_RANGE, GETN_XYRANGE, GETN_XYZRANGE, GETN_INTERACTIVE

Okutil_getn_update_ranges

Header to Include

GetNBox.h

Reference