2.3.1.38 GETN_HINT_LINK_TARGET


Name

GETN_HINT_LINK_TARGET

Declaration

#define GETN_HINT_LINK_TARGET(_strURL)		_tmpSubNode.SetAttribute(STR_URL_ATTRIB, _strURL);

Remark

Set the link text in the hint

Examples

EX1

#include <GetNbox.h>
void GETN_HINT_LINK_TARGET_ex()
{
    GETN_TREE(tr)
    
    //text in < > will become click-able link
    GETN_STR(hint, "See more details on <this page>", "") 
		GETN_HINT
		GETN_HINT_LINK_TARGET("https://www.originlab.com/doc/OriginC/ref/GetNBox")
	
    GETN_STR(strval, "Please enter a text for label", "")
    
    GetNBox(tr);
}

See Also

GETN_HINT, GETN_HINT_WRAPOPTIONS

Header to Include

GetNBox.h

Reference