summaryrefslogtreecommitdiff
path: root/offapi/com
diff options
context:
space:
mode:
authorSamuel Mehrbrodt <samuel.mehrbrodt@allotropia.de>2022-04-14 15:04:33 +0100
committerSamuel Mehrbrodt <samuel.mehrbrodt@allotropia.de>2022-04-19 11:17:46 +0200
commit7321d43155e91eeb4302ba94ab917b773695f944 (patch)
tree9f7e34b2ad5964cc404d873bda8c5d4146ccab47 /offapi/com
parentdc97aac5cdfa3789d4e71e9d92df6e7e68802825 (diff)
Extend insertDocumentFromURL documentation
Change-Id: I892c876ff53a0aaf2ce4d484604ef0c2a95d8801 Reviewed-on: https://gerrit.libreoffice.org/c/core/+/133035 Tested-by: Jenkins Reviewed-by: Samuel Mehrbrodt <samuel.mehrbrodt@allotropia.de>
Diffstat (limited to 'offapi/com')
-rw-r--r--offapi/com/sun/star/document/XDocumentInsertable.idl8
1 files changed, 6 insertions, 2 deletions
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 )