INTEGRATION: CWS pyunofixes1 (1.1.2); FILE ADDED
2004/12/12 19:46:22 jbu 1.1.2.1: Ã#i25309# moved scripts one level higher, as files are now also container for scripts
This commit is contained in:
14
scripting/examples/python/HelloWorld.py
Normal file
14
scripting/examples/python/HelloWorld.py
Normal file
@@ -0,0 +1,14 @@
|
||||
# HelloWorld python script for the scripting framework
|
||||
|
||||
def HelloWorldPython( ):
|
||||
"""Prints the string 'Hello World(in Python)' into the current document"""
|
||||
#get the doc from the scripting context which is made available to all scripts
|
||||
model = XSCRIPTCONTEXT.getDocument()
|
||||
#get the XText interface
|
||||
text = model.Text
|
||||
#create an XTextCursor
|
||||
cursor = text.createTextCursor()
|
||||
#and insert the string
|
||||
text.insertString( cursor, "Hello World (in Python)", 0 )
|
||||
return None
|
||||
|
Reference in New Issue
Block a user