home *** CD-ROM | disk | FTP | other *** search
/ Maximum CD 2011 June / maximum-cd-2011-06.iso / DiscContents / LibO_3.3.1_Win_x86_install_multi.exe / libreoffice1.cab / HelloWorld.py < prev    next >
Encoding:
Python Source  |  2010-12-01  |  480 b   |  14 lines

  1. # HelloWorld python script for the scripting framework
  2.  
  3. def HelloWorldPython( ):
  4.     """Prints the string 'Hello World(in Python)' into the current document"""
  5. #get the doc from the scripting context which is made available to all scripts
  6.     model = XSCRIPTCONTEXT.getDocument()
  7. #get the XText interface
  8.     text = model.Text
  9. #create an XTextRange at the end of the document
  10.     tRange = text.End
  11. #and set the string
  12.     tRange.String = "Hello World (in Python)"
  13.     return None
  14.