GETN_GAP

 

Name

GETN_GAP

Declaration

#define GETN_GAP(_tag) GETN_STR(_tag, "", "") GETN_HINT_EX(FALSE, FALSE)

Remark

This macro used to generate a gap in dynamic control

Examples

EX1

#include <GetNbox.h>
void GETN_GAP_ex()
{
    GETN_TREE(tr)
    GETN_NUM(Number, "Number of Items", 10)
    GETN_SEPARATOR_LINE
    GETN_STR(path, "File path", GetAppPath())
    GETN_GAP(gap1)
        GETN_STR(info, "Path Ifno", "this's a text") GETN_INFO
    
        GetNBox(tr);
}

See Also

GETN_SEPARATOR_LINE
GETN_MULTI_COLS_BRANCH, GETN_ADDITIONAL_TAB

Header to Include

GetNBox.h

Reference