连接到文档后,我有这段代码:
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添加到文档的正确方法是什么?