On 14/11/11 00:02, Knut Olav Bøhmer wrote:
Hi,
Is it allowed to insert a TextSection in to a document which was
created from another document?
Like this:
doc1 = StarDesktop.loadComponentFromURL("private:factory/swriter",
"_blank", 0, Array())
doc2 = StarDesktop.loadComponentFromURL("private:factory/swriter",
"_blank", 0, Array())
oCursor = doc1.text.createTextCursor()
oSect = doc2.createInstance("com.sun.star.text.TextSection")
oSect.setName("SectionName")
oCursor.getText.insertTextContent(oCursor, oSect, True)
(It works, but is it not right to do it that way?)
i am surprised that this works at all: it is not supported, the services
that are created for a document are only supposed to be inserted into
the same document.
Next question. Can I create a TextSection if I only have a xTextCursor
or a xTextRange?
hmmm... you'd need to get the model from the cursor somehow...
could not find an obvious way to do this; probably it's necessary to
store the document together with the cursor.
Context
Privacy Policy |
Impressum (Legal Info) |
Copyright information: Unless otherwise specified, all text and images
on this website are licensed under the
Creative Commons Attribution-Share Alike 3.0 License.
This does not include the source code of LibreOffice, which is
licensed under the Mozilla Public License (
MPLv2).
"LibreOffice" and "The Document Foundation" are
registered trademarks of their corresponding registered owners or are
in actual use as trademarks in one or more countries. Their respective
logos and icons are also subject to international copyright laws. Use
thereof is explained in our
trademark policy.