Analyzing your prompt, please hold on...
An error occurred while retrieving the results. Please refresh the page and try again.
Cells class has exposed MemorySetting property which can be used to optimize the memory usage for cells data, and hence decrease the overall memory cost. The following example shows how to write a large data to a worksheet in optimized mode.
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
The memory settings will not work for the default sheet automatically created by the Workbook object. In order to change the memory settings of existing sheets, please apply the memory setting manually before performing any data manipulation.
Analyzing your prompt, please hold on...
An error occurred while retrieving the results. Please refresh the page and try again.