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