Retro video games delivered to your door every month!
Click above to get retro games delivered to your door ever month!
X-Hacker.org- ClipX.Lib v1.2 - <b>boldulineend()</b> http://www.X-Hacker.org [<<Previous Entry] [^^Up^^] [Next Entry>>] [Menu] [About The Guide]
BoldULineEnd()
Returns/writes wrapper for Bold and UnderLine end tags </u></b>
---------------------------------------------------------------------

Syntax:

  BoldULineEnd()  --->  cString

Arguments: None

Returns: A character string consisting of the generated HTML tag.

Description:

  Generates Bold and UnderLine end tags to end the Bold-Underline font.

  The generated string is always returned. The string will be written
  to standard-out depending on the value of StopWrite().
  The default StopWrite() value is FALSE. Setting the StopWrite() value
  to TRUE will suspend the write to standard-out.

  Must be preceded by BoldULineBeg() to start the Bold-Underline font.

Examples: :

  Using BoldULineEnd() with a word or phrase.
    htmlWrite( "The next word " )
    BoldULineBeg()
    htmlWrite( "is " )
    BoldULineEnd()
    htmlWrite( " displayed in Bold and Underlined font." )

  Using BoldULineEnd() with multiple lines.
    BoldULineBeg()
    htmlWrite( "Line 1 ......." )
    Br()
    htmlWrite( "Line 2 ....." )
    Br()
    htmlWrite( "Line 3 .." )
    BoldULineEnd()

Alternate:

  htmlWrite( '</u></b>' )

Files: Library is ClipX.Lib

Online reference: Mikodocs Guide To HTML - Bold tag
Online reference: Mikodocs Guide To HTML - Underline


See Also: BoldULineBeg() BoldEnd() ULineEnd()

Online resources provided by: http://www.X-Hacker.org --- NG 2 HTML conversion by Dave Pearson