Saving an excel to html continues to show hidden sheets

dear support,


when you save an excel in Aspose.cells to the html format, it continues to show hidden sheets.
It would be great if this can be fixed at the earliest.

thank you,

guido

Hi Guido,


Thank you for contacting Aspose support.

We have evaluated your presented scenario while using the latest version of Aspose.Cells for .NET 8.4.0, and we are unable to experience the mentioned issue. The hidden worksheets in the spreadsheet does not render in the resultant HTML if you turn off the HtmlSaveOptions.ExportHiddenWorksheet property. Please check the following piece of code and give it a try on your end. In case the problem persists, please provide us your sample spreadsheet along with source code (preferably a sample application) for further investigation.

C#

Workbook book = new Workbook(“D:/book1.xlsx”);
book.Save(“D:/output.html”, new HtmlSaveOptions() { ExportHiddenWorksheet= false});

sorry - i was unaware of this setting.

It works - thanks for the hint !


Hi Guido,


It is good to know that you are up & running again. Please feel free to get in touch if you need our further assistance with Aspose APIs.