We’re looking forward to a number of bugfixes present in 8.3.1.5.
However, while testing the new version, we’ve noticed that the cross cell text cropping behavior has changed. This is quite an issue, since content that would otherwise be visible now no longer is.
Please see attached Excel source, and “old” and “new” generated HTML by Aspose Cells.
We’ve tried the 3 different options for setHtmlCrossStringType() as well, without success.
Sample source:
Workbook workbook = new Workbook(file);
HtmlSaveOptions saveOptions = new HtmlSaveOptions(SaveFormat.HTML);
saveOptions.setParseHtmlTagInCell(false);
saveOptions.setExportHiddenWorksheet(false);
saveOptions.setExportActiveWorksheetOnly(true);
workbook.save(“out.html” saveOptions);