1 # HelloWorld python script for the scripting framework
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
9 #create an XTextRange at the end of the document
12 tRange
.String
= "Hello World (in Python)"