GETN_OPTION_EDIT_ALIGN
#define GETN_OPTION_EDIT_ALIGN(_STR) _strTemp = _STR; _tmpNode.SetAttribute(STR_ATTRIB_EDITCOL_ALIGN, _strTemp);
Set Edit Column Alignments for CheckBox|Numbers|Strings.
EX1
#include <GetNbox.h> void GETN_OPTION_EDIT_ALIGN_ex1() { GETN_TREE( treeTest ); GETN_OPTION_EDIT_ALIGN("0|1|1") // CheckBox = Left, Numbers = Center, String = Center GETN_CHECK(FixIntercept, "Fix Intercept", 1) GETN_COLOR(FitCurveColor, "Fit Curve color", 1) GETN_NUM(Test, "Slope Compared at", 0) GETN_STR(Output, "Output Sheet name", "Junk") if( GetNBox( treeTest )) //a vertical line appears out_tree( treeTest ); }
GetNbox.h