如何使用Python Uno将TextShape添加到文档中

时间:2013-02-20 17:47:01

标签: python document libreoffice pyuno

连接到文档后,我有这段代码:

page = document.getDrawPages().getByIndex( 0 )

textshape = document.createInstance('com.sun.star.drawing.TextShape')
textshape.setSize(Size(150, 150))
textshape.setPosition(Point(100, 100))
textshape.setString('Test') 
textshape.CharColor = 0
textshape.CharHeight = 12

page.add(textshape)

代码没有出错,但没有任何反应。

使用Python将TextShape添加到文档的正确方法是什么?

0 个答案:

没有答案