Cambios en la API pública en Aspose.Cells 8.0.1

Propiedad MemorySetting agregada a la clase Cells

La clase Cells ha expuesto los métodos setMemorySetting y getMemorySetting que se pueden utilizar para optimizar el uso de memoria para los datos de las celdas y, por lo tanto, disminuir el costo total de la memoria. El siguiente ejemplo muestra cómo escribir grandes datos en una hoja de cálculo en modo optimizado.

Java

 //Instantiate a new Workbook

Workbook book = new Workbook();

//Set the memory preferences

book.getSettings().setMemorySetting(MemorySetting.MEMORY_PREFERENCE);

//To change the memory setting of existing sheets, please change memory setting for them manually:

Cells cells = book.getWorksheets().get(0).getCells();

cells.setMemorySetting(MemorySetting.MEMORY_PREFERENCE);

//Input large dataset into the cells of the worksheet.

//Your code goes here