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() Create a new instance of the THtml class
Close() Close the created file
WriteTitle() Write the file title
WritePar() Writes a paragraph
WriteParBold() Same as WritePar(), but the text is bold
WriteLink(,) Write a link to another topic
WriteText() Write any text

Examples

FUNCTION 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 Nil

Status

Ready

Compliance

This is a new Harbour Tools class

Platforms

ALL

See Also