I am using Aspose Cells 7.2.1.0 and am trying to do this (from the demo code):
workbook.Save(this.Response, "Report.pdf", ContentDisposition.Attachment, new PdfSaveOptions());
Unfortunately it won't compile, "no overload for save takes 4 arguments.
I only see these options in object browser:
Save(System.IO.Stream, Aspose.Cells.SaveOptions)
Save(System.IO.Stream, Aspose.Cells.SaveFormat)
Save(string, Aspose.Cells.SaveOptions)
Save(string, Aspose.Cells.SaveFormat)
Save(string)
How can I stream my workbook to PDF using ASP.NET?
Cheers