xtag(
TAGNAME
,
TAGVALUE
)

The xtag( function generates an HTML/XML tag.


Parameters

This function has two parameters:

tagname – name of the tag to be generated

tagvalue – value of the tag to be generated


Description

This function generates an HTML/XML tag.

xtag("COLOR","blue") ☞ <COLOR>blue</COLOR>
xtag("TITLE","Final Race Results") ☞ <TITLE>Final Race Results</TITLE>

Note: This function is equivalent to:

"<"+tagname+">"+tagvalue+"</"+tagname+">"

See Also


History

VersionStatusNotes
10.0No ChangeCarried over from Panorama 6.0.