Public API Changes in Aspose.Cells 8.2.0

Added MultiThreadReading Property for the Cells Class

With Aspose.Cells for .NET 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 ensures that each thread will receive the correct cell value.

Added Overloads for AutoFitRows & AutoFitColumns Methods

New overloads for AutoFitRows & AutoFitColumns have been added to the Worksheet class, allowing developers to auto‑fit the rows and columns based on their respective ranges while passing an instance of the AutoFitterOptions class.

The signatures of the aforesaid methods are as follows:

  1. AutoFitRows(int startRow, int endRow, AutoFitterOptions options)
  2. AutoFitColumns(int firstColumn, int lastColumn, AutoFitterOptions options)