Hi!
We are converting xlsx to html using the following code (and Aspose.Cells v 20.8.0):
var inputPath = ...;
var targetPath = ...;
AsposeLicenser.LoadLicense();
var options = new HtmlSaveOptions
{
ExportGridLines = true
};
using (var wb = new Workbook(inputPath))
wb.Save(targetPath, options);
When loading the file from the archive below (contains a cell with one of Excel-s built in custom formats), the following is displayed on the preview:
currency_20.8.PNG (174 Bytes)
currency.zip (6.0 KB)
In the previous version (20.7.0) it looked better (even if some alignment was lost):
currency_20.7.PNG (177 Bytes)
Regards,
Arnold