GETN_PAD
#define GETN_PAD(_NODE_NAME) GETN_STR(_NODE_NAME,"","") GETN_SHOW(FALSE);
Create a dummy variable. Use this macro with GETN_MULTI_COLS_BRANCH to support uneven arrangement for multiple controls.
EX1
#include <GetNBox.h> void GETN_PAD_ex() { GETN_BOX( treeTest ); GETN_BEGIN_BRANCH(trBranch,"condition") GETN_MULTI_COLS_BRANCH(2, DYNA_MULTI_COLS_COMAPCT) GETN_OPTION_BRANCH(GETNBRANCH_OPEN) GETN_LIST(cond1, _L("Condition 1"), 2, "greater than|less than|between") GETN_PAD(dummy) GETN_NUM(val11, "", 1) GETN_NUM(val12, _L("and"), 10) GETN_END_BRANCH(trBranch) if( GetNBox( treeTest )) out_tree( treeTest ); }
GETN_MULTI_COLS_BRANCH
GetNbox.h