تغييرات API العامة في Aspose.Cells 8.0.1

تمت إضافة خاصية MemorySetting إلى فئة Cells

تمتك فئة 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. من أجل تغيير إعدادات الذاكرة للصفحات الحالية، يرجى تطبيق إعداد الذاكرة يدويًا قبل أداء أي عمليات تلاعب بالبيانات.