Retro video games delivered to your door every month!
Click above to get retro games delivered to your door ever month!
X-Hacker.org- Harbour tools help- GT lib - Norton Guide http://www.X-Hacker.org [<<Previous Entry] [^^Up^^] [Next Entry>>] [Menu] [About The Guide]

TOs2()

OS/2 Documentation Class
---------------------------------------------------------------------------------

 Syntax

        oNg:=TOs2():New(<cFile>) --> oOs2  

 Arguments

        <cFile>   Name of the IPF Source file to create    

 Returns

        <oOs2>   An instance of the TOs2 Class    

 Description

      TOs2() is a class that creates the OS/2 IPF Source  of the same name
      you pass to the constructor.
      The class methods are as follows:
      New(<cFile>)          Create a new instance of the TOs2 class
      Close()               Close the created file
      WriteTitle(<cTopic>,<cTitle>)  Write the file title
      WritePar(<cPar>)      Write a paragraph
      WriteParBold(<cPar>)  Same as WritePar(), but the text is bold
      WriteLink(<cLink>)    Write a link to another topic
      ScanLink(<clink>)     Scan the aLinkRef array for a valid topic
      DosToOs2Text(<cText>) Convert a Dos string to a OS/2 String

 Examples

      FUNCTION MAIN()

      LOCAL oNg

      oNg := TOs2():New( "ngi\harbour.ngi" )
      oNg:WriteTitle( "Harbour Reference Guide" )
      oNg:WritePar( "HARBOUR" )
      oNg:WriteLink( "OverView" )
      oNg:WriteLink( "License" )

      oNg:WritePar( "See the Links Above" )
      oNg:Close()
      RETURN Nil
  

Status

      Ready

 Compliance

      This is a new Harbour Tools class

 Platforms

      ALL



See Also: TNortonGuide()

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