summaryrefslogtreecommitdiff
path: root/wizards/source/scriptforge/python/scriptforge.py
diff options
context:
space:
mode:
Diffstat (limited to 'wizards/source/scriptforge/python/scriptforge.py')
-rw-r--r--wizards/source/scriptforge/python/scriptforge.py3
1 files changed, 3 insertions, 0 deletions
diff --git a/wizards/source/scriptforge/python/scriptforge.py b/wizards/source/scriptforge/python/scriptforge.py
index d9fac9c26d5e..ec76835befd2 100644
--- a/wizards/source/scriptforge/python/scriptforge.py
+++ b/wizards/source/scriptforge/python/scriptforge.py
@@ -2018,6 +2018,9 @@ class SFDocuments:
def DSum(self, range):
return self.ExecMethod(self.vbMethod, 'DSum', range)
+ def ExportRangeToFile(self, range, filename, imagetype = 'pdf', overwrite = False):
+ return self.ExecMethod(self.vbMethod, 'ExportRangeToFile', range, filename, imagetype, overwrite)
+
def Forms(self, sheetname, form = ''):
return self.ExecMethod(self.vbMethod + self.flgArrayRet, 'Forms', sheetname, form)