need help to insert an image with a caption with the Libo java API
sos
sos at pmg.be
Wed Feb 13 10:47:02 UTC 2019
On 2/13/2019 10:45 AM, Miklos Vajna via LibreOffice wrote:
Hi,
On Tue, Feb 12, 2019 at 09:27:15AM +0000, LORENZO Vincent <vincent.lorenzo at cea.fr><mailto:vincent.lorenzo at cea.fr> wrote:
I would like to add a caption, to an inserted image in a text
document, but I don't find how to do that... Please do you have
pointer/documentation for me ?
I think captions are just a UI feature. The doc model just stores a text
frame around the image and the image is followed by the caption itself.
(I.e. later it's not possible to reliably detect if some content around
an image in a frame was created by hand or using the captions UI code.)
So you can do the same "manually" using the UNO API. When in doubt, see
what UNO API the ODT import uses to create the doc model based on the
input markup.
yep, insert a Frame, insert a Image in the frame and add a caption
sub InsertIllustrationReference
oDoc = ThisComponent
oText = oDoc.getText()
oViewCursor = oDoc.getCurrentController().getViewCursor()
oReference = oDoc.createInstance("com.sun.star.text.textfield.GetReference")
With oReference
.SourceName = "Illustration"
.ReferenceFieldPart = com.sun.star.text.ReferenceFieldPart.ONLY_SEQUENCE_NUMBER
.ReferenceFieldSource = com.sun.star.text.ReferenceFieldSource.SEQUENCE_FIELD
.SequenceNumber = 0
End With
oText.insertTextContent(oViewCursor, oReference, False)
end sub
Regards,
Miklos
_______________________________________________
LibreOffice mailing list
LibreOffice at lists.freedesktop.org<mailto:LibreOffice at lists.freedesktop.org>
https://lists.freedesktop.org/mailman/listinfo/libreoffice
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <https://lists.freedesktop.org/archives/libreoffice/attachments/20190213/88c9c6a7/attachment.html>
More information about the LibreOffice
mailing list