offapi/com/sun/star/document/XDocumentInsertable.idl | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-)
New commits: commit 7321d43155e91eeb4302ba94ab917b773695f944 Author: Samuel Mehrbrodt <samuel.mehrbr...@allotropia.de> AuthorDate: Thu Apr 14 15:04:33 2022 +0100 Commit: Samuel Mehrbrodt <samuel.mehrbr...@allotropia.de> CommitDate: Tue Apr 19 11:17:46 2022 +0200 Extend insertDocumentFromURL documentation Change-Id: I892c876ff53a0aaf2ce4d484604ef0c2a95d8801 Reviewed-on: https://gerrit.libreoffice.org/c/core/+/133035 Tested-by: Jenkins Reviewed-by: Samuel Mehrbrodt <samuel.mehrbr...@allotropia.de> diff --git a/offapi/com/sun/star/document/XDocumentInsertable.idl b/offapi/com/sun/star/document/XDocumentInsertable.idl index 6b72864eec2f..340305c6de2b 100644 --- a/offapi/com/sun/star/document/XDocumentInsertable.idl +++ b/offapi/com/sun/star/document/XDocumentInsertable.idl @@ -32,12 +32,16 @@ module com { module sun { module star { module document { -/** makes it possible to import a document from a given URL +/** Makes it possible to import a document from a given URL into this document. */ published interface XDocumentInsertable: com::sun::star::uno::XInterface { - /** inserts the document that is specified by the URL. + /** Inserts the document that is specified by the URL. + The document will be inserted at the current cursor position. + + Make sure that you insert at a position which can be split + in two paragraphs (i.e. not inside of a field). */ void insertDocumentFromURL( [in] string aURL, [in] sequence<com::sun::star::beans::PropertyValue> aOptions )