THtml()

THtml()

Html Class

Syntax

      oHtml:=THtml():New(<cFile>) --> oHtm

Arguments

<cFile> Name of the Html file to create

Returns

<oHtm> An instance of the THtml Class

Description

THtml() is a class that creates an .html file of the same name you pass to the constructor.

The class methods are as follows:

New(<cFile>) Create a new instance of the THtml class

Close() Close the created file

WriteTitle(<cTitle>) Write the file title

WritePar(<cPar>) Writes a paragraph

WriteParBold(<cPar>) Same as WritePar(), but the text is bold

WriteLink(<cLink>, <cName>) Write a link to another topic

WriteText(<cText>) Write any text

Examples

      PROCEDURE Main()
         LOCAL oHtm

         oHtm := THTML():New( "www\harbour.html" )
         oHtm:WriteTitle( "Harbour Reference Guide" )
         oHtm:WritePar( "HARBOUR" )
         oHtm:WriteLink( "OverView" )
         oHtm:WriteLink( "License" )
         oHtm:WriteLink( "http://www.gnu.org/copyleft/gpl" )
         oHtm:WritePar( "See the Links Above" )
         oHtm:Close()

         RETURN

Compliance

This is a new Harbour Tools class

Platforms

ALL

Seealso

TCLASS()

2 responses to “THtml()

  1. Pingback: Harbour Classes | Viva Clipper !

  2. Pingback: Harbour All Functions – T | Viva Clipper !

Leave a Reply

Fill in your details below or click an icon to log in:

WordPress.com Logo

You are commenting using your WordPress.com account. Log Out /  Change )

Google photo

You are commenting using your Google account. Log Out /  Change )

Twitter picture

You are commenting using your Twitter account. Log Out /  Change )

Facebook photo

You are commenting using your Facebook account. Log Out /  Change )

Connecting to %s

This site uses Akismet to reduce spam. Learn how your comment data is processed.