Page 1 of 1

Lotus script UNO API: Export Sheet To PDF

Posted: Fri Jan 24, 2020 9:59 am
by maarc_cnj
Hi, I'm trying to convert the following macro to lotusScript and I can't find a way to apply the "FilterData" property.

Someone could tell me how the right code should be.

The macro is:

Code: Select all

Sub ExportActiveSheetPrintRangeToPDF

'Get Active Sheet
   dim document   as object
   dim dispatcher as object
   dim oSheet as object

   document   = ThisComponent.CurrentController.Frame
   dispatcher = createUnoService("com.sun.star.frame.DispatchHelper")
   oSheet = thiscomponent.getcurrentcontroller.activesheet
   
'Get Print Range - if no print range has been defined for the Active Sheet, then it will export the entire Active Sheet
   dim aFilterData(0) as new com.sun.star.beans.PropertyValue
   aFilterData(0).Name = "Selection"
   aFilterData(0).Value = oSheet

'Export to PDF
   dim args1(1) as new com.sun.star.beans.PropertyValue
   args1(0).Name = "FilterName"
   args1(0).Value = "calc_pdf_Export"
   args1(1).Name = "FilterData"
   args1(1).Value = aFilterData()

   dispatcher.executeDispatch(document, ".uno:ExportDirectToPDF", "", 0, args1())

'File Done (added this next line so that user knows when file is complete)
   Beep

End Sub
Thank you.

Re: Lotus script UNO API: Export Sheet To PDF

Posted: Sat Jan 25, 2020 1:16 pm
by Villeroy