[Libreoffice-commits] online.git: Branch 'distro/collabora/milestone-7' - loleaflet/reference.html

Jan Holesovsky kendy at collabora.com
Thu Mar 10 14:28:10 UTC 2016


 loleaflet/reference.html |   43 +++++++++++++++++++++++++++++++++++++++++++
 1 file changed, 43 insertions(+)

New commits:
commit 440d0e81d28d229fe41f10b3efc37d7632fb4091
Author: Jan Holesovsky <kendy at collabora.com>
Date:   Thu Mar 10 15:24:59 2016 +0100

    loleaflet: Add commands for handling table rows / columns in presentatios.

diff --git a/loleaflet/reference.html b/loleaflet/reference.html
index e3d654f..9375f9c 100644
--- a/loleaflet/reference.html
+++ b/loleaflet/reference.html
@@ -8637,6 +8637,49 @@ var unoCommands = [
 },
 
 {
+    header: 'Tables (in presentations)',
+},
+
+{
+    uno: '.uno:InsertColumns',
+    parameter: null,
+    description: 'Insert column after the current cursor position.',
+},
+
+{
+    uno: '.uno:InsertRows',
+    parameter: null,
+    description: 'Insert row after the current cursor position.',
+},
+
+{
+    uno: '.uno:InsertTable',
+    parameter: {
+	'Columns': {
+		'type': 'long',
+		'value': 6
+	},
+	'Rows': {
+		'type': "long",
+		'value': 10
+	}
+    },
+    description: 'Insert table with the given dimensions.'
+},
+
+{
+    uno: '.uno:DeleteColumns',
+    parameter: null,
+    description: 'Delete the current column.'
+},
+
+{
+    uno: '.uno:DeleteRows',
+    parameter: null,
+    description: 'Delete the current row.'
+},
+
+{
     header: 'Spreadsheet-related',
 },
 


More information about the Libreoffice-commits mailing list