home *** CD-ROM | disk | FTP | other *** search
/ PC go! 1996 December / PC_GO.ISO / demo / suite96 / lotus033.dsk / TYPETEXT.LSS < prev    next >
Encoding:
Text File  |  1995-07-13  |  317 b   |  12 lines

  1. ' The .Type command is a shortcut to type text into the document    
  2. .Type("Hallo Welt.")
  3. .Type("[Enter] Line 1 [Enter]")
  4. .Type("[CtrlHome][ShiftCtrlEnd]")
  5. .Text.Font.Bold = True    
  6. .Type("[CtrlEnd]")
  7.  
  8. ' Or 
  9. ' accesses the .Text object at the current location
  10. .Text.InsertText("Hallo")
  11. .Text.InsertText("Welt")
  12.