Hello,
I for the life of me cannot figure out how to enable the whole sheet export option shown in the export pdf dialog in calc, using java uno or the command line api. I’ve tried
pdfOptions[2] = new PropertyValue();
pdfOptions[2].Name = "WholeSheet";
pdfOptions[2].Value = true;
pdfOptions[2] = new PropertyValue();
pdfOptions[2].Name = "WholeSheetExport";
pdfOptions[2].Value = true;
etc with no success: the output is again one page for each sheet (or multiple pages for each sheet)
Would be grateful for any hints in this regard!