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>tdbeg()</b> http://www.X-Hacker.org [<<Previous Entry] [^^Up^^] [Next Entry>>] [Menu] [About The Guide]
TDbeg()
Returns/writes HTML Table Data begin tag <TD>
---------------------------------------------------------------------

Syntax:

  TDbeg()  --->  cString

Arguments: None

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

Description:

  Generates Table Data begin tag to start the table cell definition in
  a table record.

  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 terminated with TDend() to end the table cell definition.

Examples:

  TableBeg()
    TRbeg()
      TDbeg()
        htmlWrite( 'Row 1 Col 1' )
      TDend()
      TDbeg()
        htmlWrite( 'Row 1 Col 2' )
    TDend()
    TRbeg()
      TDbeg()
        htmlWrite( 'Row 2 Col 1' )
      TDend()
      TDbeg()
        htmlWrite( 'Row 2 Col 2' )
      TDend()
    TRend()
  TableEnd()

Alternate:

  htmlWrite( '<TD>' )

Files: Library is ClipX.Lib

Online reference:  Mikodocs Guide To HTML - TD tag


See Also: TDend()

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