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>olend()</b> http://www.X-Hacker.org [<<Previous Entry] [^^Up^^] [Next Entry>>] [Menu] [About The Guide]
OLend()
Returns/writes HTML Ordered List end tag </OL>
---------------------------------------------------------------------

Syntax:

  OLend()  --->  cString

Arguments: None

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

Description:

  Generates Ordered List ending tag to end the current list.

  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 OLbeg() to start the Ordered list.

Examples:

  Example 1 Using OLbeg() to create an ordered list with Roman numerals
            to indicate the order. The list begins numbering with 1.

      OLbeg( "I", "1" )
        LI("Item ONe")
        LI("Item Two")
        LI("Item Three")
      ULend()

  Example 2 Using OLbeg() to create an ordered list with letters
            to indicate the order. The list is broken by some text
            and continued in sequence.

      OLbeg( "1", "1" )
        LI(" Engine ")
        LI(" Wheels ")
        LI(" Frame ")
      ULend()
      Br()
      htmlWrite( "The following are optional.." )
      Br()
      OLbeg( "1", "4" )
        LI( "Sun roof" )
        LI( "CD Player" )
        LI( "Power Locks" )
      ULend()

Alternate:

  htmlWrite( '</OL>' )

Files: Library is ClipX.Lib

Online reference:  Mikodocs Guide To HTML - OL tag


See Also: OLbeg() LI() ULbeg() ULend()

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