Hello
I'm dealing with the worksheetPageSetup in order to print my worksheet on only one page like it could be done in C# with excel interop like this
PageSetup.Zoom =
false
;
PageSetup.FitToPagesWide = 1;
PageSetup.FitToPagesTall = 1;
PageSetup.Orientation = Microsoft.Office.Interop.Excel.XlPageOrientation.xlLandscape;
I found
worksheet.WorksheetPageSetup.PageOrientation = PageOrientation.Landscape
but I can't find how to do
PageSetup.Zoom =
false
;
PageSetup.FitToPagesWide = 1;
PageSetup.FitToPagesTall = 1;
with spreadsheet
Do you know how can I have the same issue with spreadsheet ?
thanks
regards
J-Christophe EICHENBERGER