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

メモリ設定は、Workbookオブジェクトによって自動的に作成されるデフォルトのシートには自動的に適用されません。既存のシートのメモリ設定を変更するには、データ操作を行う前にメモリ設定を手動で適用してください。