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

  1. #---------------------------------------------------------------------------
  2. #
  3. #      (c)     Cayenne Software Inc. 1997
  4. #
  5. #      File:        @(#)wd97automa.tcl    /main/hindenburg/1
  6. #      Description:    
  7. #---------------------------------------------------------------------------
  8. # SccsId = @(#)wd97automa.tcl    /main/hindenburg/1 23 May 1997  Copyright 1997 Cayenne Software Inc.
  9.  
  10.  
  11. Class Wd97AutomationObject : {OleAutoObject} {
  12.     constructor
  13.     method destructor
  14. }
  15.  
  16. constructor Wd97AutomationObject {class this} {
  17.     set this [OleAutoObject::constructor $class $this Word.Application]
  18.     return $this
  19. }
  20.  
  21. method Wd97AutomationObject::destructor {this} {
  22.     
  23. }
  24.  
  25.  
  26.