From 3f0f452519618e4b0bd0b97a855fc5ffe5514a49 Mon Sep 17 00:00:00 2001 From: Alain Romedenne Date: Tue, 11 Dec 2018 16:54:46 -0200 Subject: StarDesktop object and reorder indexes Add StarDesktop object description Reorder "Other commands" to add UNO objects Change-Id: Ia6547ea059276f8946b03392d29d968187bcd26c Signed-off-by: Olivier Hallot Reviewed-on: https://gerrit.libreoffice.org/64981 Tested-by: Jenkins --- source/text/sbasic/shared/stardesktop.xhp | 36 +++++++++++++++++++++++++++++++ 1 file changed, 36 insertions(+) create mode 100644 source/text/sbasic/shared/stardesktop.xhp (limited to 'source/text/sbasic/shared/stardesktop.xhp') diff --git a/source/text/sbasic/shared/stardesktop.xhp b/source/text/sbasic/shared/stardesktop.xhp new file mode 100644 index 0000000000..d4d215cc3e --- /dev/null +++ b/source/text/sbasic/shared/stardesktop.xhp @@ -0,0 +1,36 @@ + + + + + + StarDesktop + /text/sbasic/shared/stardesktop.xhp + + + + +
+ + StarDesktop + + +

StarDesktop

+ The StarDesktop object represents %PRODUCTNAME application. Some routines or user interface objects such as current window can be used via StarDesktop. +
+

Example:

+ + dim docURL As String + doc As Object, docProperties() + docURL = ConvertToURL("C:\My Documents\example.odt") + doc = StarDesktop.LoadComponentFromURL(docURL, "_blank", 0, docProperties) + + +
+ -- cgit