Update ooo320-m1
[ooovba.git] / scripting / examples / python / HelloWorld.py
blob7f5b45c8cd08b29a62fffb61bfa047927cf5307a
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
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