home *** CD-ROM | disk | FTP | other *** search
/ PC World 1997 November / PCWorld_1997-11_cd.bin / software / programy / komix / DATA.Z / worddocedi.tcl < prev    next >
Text File  |  1997-05-23  |  1KB  |  51 lines

  1. #---------------------------------------------------------------------------
  2. #
  3. #      (c)     Cayenne Software Inc.    1997
  4. #
  5. #      File:           @(#)worddocedi.tcl    /main/hindenburg/1
  6. #      Author:         <generated>
  7. #      Description:
  8. #---------------------------------------------------------------------------
  9. # SccsId = @(#)worddocedi.tcl    /main/hindenburg/1   23 May 1997 Copyright 1997 Cayenne Software Inc.
  10.  
  11. # Start user added include file section
  12. # End user added include file section
  13.  
  14. require "wddocedito.tcl"
  15.  
  16. Class WordDocEditor : {WdDocEditor} {
  17.     constructor
  18.     method destructor
  19.     method connect
  20.     method disconnect
  21.     attribute wordObj
  22. }
  23.  
  24. constructor WordDocEditor {class this name_1} {
  25.     set this [WdDocEditor::constructor $class $this $name_1]
  26.     # Start constructor user section
  27.     $this printsIncluded y
  28.     $this name Word
  29.     $this version 70
  30.     # End constructor user section
  31.     return $this
  32. }
  33.  
  34. method WordDocEditor::destructor {this} {
  35.     # Start destructor user section
  36.     # End destructor user section
  37.     $this WdDocEditor::destructor
  38. }
  39.  
  40. method WordDocEditor::connect {this} {
  41.     uplevel #0 require wordautoma.tcl
  42.     $this wordObj [WordAutomationObject new]
  43. }
  44.  
  45. method WordDocEditor::disconnect {this} {
  46.     [$this wordObj] delete
  47. }
  48.  
  49. # Do not delete this line -- regeneration end marker
  50.  
  51.