home *** CD-ROM | disk | FTP | other *** search
- #---------------------------------------------------------------------------
- #
- # (c) Cayenne Software Inc. 1997
- #
- # File: @(#)worddocedi.tcl /main/hindenburg/1
- # Author: <generated>
- # Description:
- #---------------------------------------------------------------------------
- # SccsId = @(#)worddocedi.tcl /main/hindenburg/1 23 May 1997 Copyright 1997 Cayenne Software Inc.
-
- # Start user added include file section
- # End user added include file section
-
- require "wddocedito.tcl"
-
- Class WordDocEditor : {WdDocEditor} {
- constructor
- method destructor
- method connect
- method disconnect
- attribute wordObj
- }
-
- constructor WordDocEditor {class this name_1} {
- set this [WdDocEditor::constructor $class $this $name_1]
- # Start constructor user section
- $this printsIncluded y
- $this name Word
- $this version 70
- # End constructor user section
- return $this
- }
-
- method WordDocEditor::destructor {this} {
- # Start destructor user section
- # End destructor user section
- $this WdDocEditor::destructor
- }
-
- method WordDocEditor::connect {this} {
- uplevel #0 require wordautoma.tcl
- $this wordObj [WordAutomationObject new]
- }
-
- method WordDocEditor::disconnect {this} {
- [$this wordObj] delete
- }
-
- # Do not delete this line -- regeneration end marker
-
-