GETN_HELP
#define GETN_HELP(_STR) _tmpNode.SetAttribute(STR_DOCUMENT_NAME_ATTRIB, _STR);
Specify the help file to be opened by clicking on the question button on the upper right of the dialog.
EX1
#include <GetNBox.h> void GetNBox_ex1() { double x0, x1; GETN_BOX(trGetN) GETN_HELP("F:\\Help\\Labtalk.chm") GETN_HELP_PATH("::/Script/Exporting_Matrices.html") GETN_NUM(xFrom, "X From", 1.3) GETN_NUM(xStep, "X Step", -0.5) if(GetNBox(trGetN, "Row# as X", "Please specify initial X value and increment")) { x0 = trGetN.xFrom.dVal; x1 = trGetN.xStep.dVal; printf("X from %f with increment %f\n", x0, x1); } }
GETN_HELP_PATH, GETN_HELP_MAPID
GetNbox.h