GETN_HINT

 

Name

GETN_HINT

Declaration

#define GETN_HINT GETN_HINT_EX(TRUE, TRUE)

Remark

Set label of the control as read only style

Examples

EX1

#include <GetNbox.h>
void GETN_HINT_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_INFO, GETN_HINT_EX

Header to Include

GetNBox.h

Reference