Hi,
I have an excel file (t.xlsx attached) with one sheet where there is only one page to print. After execution of the code below it gets auto page break splitting the sheet into two print pages. We use v.6.0.1.7 but it is reproducible on the latest v.7.1.2.0 as well.
string templatePath = "t.xlsx";string genericTemplatePath = "ut.xlsm";
string resultPath = "result.xlsx";
var t = new Aspose.Cells.Workbook(templatePath);
var gt = new Aspose.Cells.Workbook(genericTemplatePath);
gt.Combine(t);
gt.Save(resultPath, Aspose.Cells.SaveFormat.Xlsx);
Could you please look into this issue.
Thanks,
Leo