htmlbold(
TEXT
)

The htmlbold( function takes the text and adds <b> and </b> tags to it.


Parameters

This function has one parameter:

text – the original text.


Description

Takes the original text and adds <b> and </b> tags to it. If the text is later displayed as part of an HTML page, it will be displayed in bold.

htmlbold("hello world") ☞ <b>hello world</b>

Note: This function is equivalent to:

"<b>"+thetext+"</b>"

See Also


History

VersionStatusNotes
10.0No ChangeCarried over from Panorama 6.0.