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>ulbeg()</b> http://www.X-Hacker.org [<<Previous Entry] [^^Up^^] [Next Entry>>] [Menu] [About The Guide]
ULbeg()
Returns/writes HTML Unordered List begin tag <UL>
---------------------------------------------------------------------

Syntax:

  ULbeg( [<cType>] )  --->  cString

Arguments:

  [<cType>] is a character string for the type of bullet representation.

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

Description:

  Generates HTML Unordered List begin tag.

  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.

  [<cType>] is a constant for the shape of the bullet to use with
  line items, ( <LI> tags ).
  Values are DISC | CIRCLE | SQUARE
  The default is CIRCLE.

  Must be terminated with ULend() after the line item tags <LI>.

Examples:

  ULbeg( "Circle" )
    LI("Item ONe" )
    LI("Item Two" )
    LI("Item Three" )
  ULend()

Alternate:

  htmlWrite( '<UL TYPE="Circle">' )

Files: Library is ClipX.Lib

Online reference:  Mikodocs Guide To HTML - UL tag


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

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