Browse our Products

Aspose.Cells for Java 17.4.0 Release Notes

KeySummaryCategory
CELLSJAVA-41975Support DBNum (custom pattern) formattingNew Feature 
CELLSJAVA-42237Accessing the cell creates HTML with blank rowsEnhancement 
CELLSJAVA-42236Performance issue with multi-threading environmentEnhancement 
CELLSJAVA-42226Limit to a folder and its sub-folders to use fonts in rendering images/PDFEnhancement 
CELLSJAVA-42239Input string format error on loading an HTMLBug 
CELLSJAVA-42230An additional align attribute is generated on converting XLSX to HTMLBug 
CELLSJAVA-42229Export XLSX to HTML - Hash symbols are generated in place of actual Cell valuesBug 
CELLSJAVA-42218HTML is not rightly converted to Excel fileBug 
CELLSJAVA-42210Some of DataBar conditional formatting is missing in the output HTMLBug 
CELLSJAVA-41783Background image should be in SVG format but it is in PNG formatBug 
CELLSJAVA-42253Dependent cell value causes an error in XLSBug 
CELLSJAVA-42222Sum is not correct after workbook calculationBug 
CELLSJAVA-42254GridWebServlet?acw_ajax_call error occurs while loading GridWebBug 
CELLSJAVA-42243Excel to PDF - Square looks like RectangleBug 
CELLSJAVA-42242Excel to PDF - Circle looks like Oval ShapeBug 
CELLSJAVA-42227The image file “x1.png” has an extra top border and missing bottom borderBug 
CELLSJAVA-42212Performance issue on exporting an XLS to PDFBug 
CELLSJAVA-42246Excel to HTML - Text alignment in chart Y-axis label is wrongBug 
CELLSJAVA-42223Radar chart’s points xy px return 0Bug 
CELLSJAVA-42216Bound Values of Y-Axis of Bubble Chart changes when AxisScalingValuesIssue-2.xlsx is converted to PDF Bug 
CELLSJAVA-42250Compilation error if code contains definition of variable with type CommandBarBug 
CELLSJAVA-42241Excel to PDF - Brackets are coming in next lineBug 
CELLSJAVA-42234Saving XLSM file as XLS takes away macro action from buttonBug 
CELLSJAVA-42233Upgrade the code - Applying 3D Format to ChartBug 
CELLSJAVA-42225Unable to set Shape Input RangeBug 
CELLSJAVA-42224Issue with sorting CommentsBug 
CELLSJAVA-42221Critical Regression with Custom ControlsBug 
CELLSJAVA-42220Issue with setting Page Layout View for XLSB filesBug 
CELLSJAVA-42217After accessing VbaModule via Aspose API, the resulting Excel file has broken vba projectBug 
CELLSJAVA-42213Font unintentionally is changing its size in comment with a CR embedded in itBug 
CELLSJAVA-42231Exception occurs on inserting rowsException 

Public API and Backwards Incompatible Changes

The following is a list of any changes made to the public API such as added, renamed, removed or deprecated members as well as any non-backward compatible change made to Aspose.Cells for Java. If you have concerns about any change listed, please raise it on the Aspose.Cells support forum.

Adds VbaProject.Protect(bool islockedForViewing,string password) method

Protects or unprotects the VBA project.

Adds VbaProject.IsProtected property

Indicates whether the vba project is protected.

Adds VbaProject.IslockedForViewing property

Indicates whether the VBA project is locked for viewing.

Adds CopyOptions.ExtendToAdjacentRange property

Indicates whether extend ranges when copying the range to adjacent range.

 Workbook wb = new Workbook("sample.xlsx");

Worksheet ws = wb.getWorksheets().get("Sheet1");

CopyOptions co = new CopyOptions();

co.setExtendToAdjacentRange(true);

Cells cells = ws.getCells();

cells.copyRows(cells, 0, 1, 1, co);

Deletes obsoleted Workbook.ValidateFormula(string formula) method

Adds DataSorter.SortAsNumber property

Indicates whether sorting anything that looks like a number.

Usage Examples

Please check the list of help topics added in the Aspose.Cells Wiki docs:


 
 English