Aspose.Cells 8.0.1中的公共API变更

在Cells类中添加了MemorySetting属性。

Cells类已公开MemorySetting属性,可用于优化单元格数据的内存使用,并因此降低整体内存成本。以下示例显示了如何在优化模式下向工作表写入大数据。

C#

 //Instantiate a new Workbook

Workbook book = new Workbook();

//Set the memory preferences

book.Settings.MemorySetting = MemorySetting.MemoryPreference;

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

Cells cells = book.Worksheets[0].Cells;

cells.MemorySetting = MemorySetting.MemoryPreference;

//Input large dataset into the cells of the worksheet

//Your code goes here

默认工作簿对象自动创建的工作表不会自动应用内存设置。为了更改现有工作表的内存设置,请在执行任何数据操作之前手动应用内存设置。