2.3.1.43 GETN_INFO


Name

GETN_INFO

Declaration

#define GETN_INFO GETN_READ_ONLY_COLOR GETN_OPTION_DISPLAY_FORMAT(DISPLAY_EDITOR_LEFT)

Remark

Indicate a statis control for info display

Examples

EX1

#include <GetNbox.h>
void GETN_INFO_ex1()
{
    GETN_BOX(trRoot)
    GETN_STR(STR, "Normal String with Bold font", "Editable Value")				//defult    
    GETN_STR(STR, "Normal String with Bold font", "Hidden Value") GETN_HINT 	//Set the label as blue
    GETN_STR(STR, "Normal String", "Hidden Value") GETN_HINT_EX(FALSE, FALSE) 	//Set the label as blue
    GETN_STR(STR, "Normal String with Bold font", "Read-only Value") GETN_INFO	//Set the value as blue
    
    if ( GetNBox(trRoot) )
        out_tree(trRoot);
    return;
}

See Also

GETN_HINT, GETN_HINT_EX

Header to Include

GetNBox.h

Reference