Hi,
i am converting a ods file (see attached file) to pdf with this lines of code:
Aspose.Cells.License licenseC = new Aspose.Cells.License();
licenseC.SetLicense(this.licenseName);
Aspose.Cells.Workbook book = new Aspose.Cells.Workbook(file);
FileStream fileStreamPDF = new FileStream(targetFile, FileMode.CreateNew);
book.Save(fileStreamPDF, Aspose.Cells.SaveFormat.Pdf);
fileStreamPDF.Close();
fileStreamPDF.Dispose();
In the PDF file are 2 rows visible.
In Microsoft Excel there are 13 Rows visible.
Best reagards
Book1.zip (2.6 KB)