Public API Changes in Aspose.Cells 8.2.0

Added MultiThreadReading Property for Cells Class

With Aspose.Cells for Java 8.2.0, the MultiThreadReading property has been added to the Cells class in order to provide a more robust mechanism to read cell values with multiple threads simultaneously. Setting the Boolean‑type property to true in a multi‑threaded application makes sure that each thread receives the correct cell value.

Added Overloads for autoFitRows and autoFitColumns Methods

New overloads for autoFitRows and autoFitColumns have been added to the Worksheet class, allowing developers to autofit the rows and columns based on their respective ranges by passing an instance of the AutoFitterOptions class.

The signatures of the aforementioned methods are as follows:

  1. autoFitRows(int startRow, int endRow, AutoFitterOptions options)
  2. autoFitColumns(int firstColumn, int lastColumn, AutoFitterOptions options)