إعادة استخدام كائنات النمط
Contents
[
Hide
]
يمكن أن تؤدي إعادة استخدام كائنات النمط إلى توفير الذاكرة وجعل البرنامج أسرع.
لتطبيق بعض التنسيقات على نطاق كبير من الخلايا في ورقة عمل:
- قم بإنشاء كائن نمط.
- حدد السمات.
- قم بتطبيق النمط على الخلايا الموجودة في النطاق.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// For complete examples and data files, please go to https://github.com/aspose-cells/Aspose.Cells-for-.NET | |
// The path to the documents directory. | |
string dataDir = RunExamples.GetDataDir(System.Reflection.MethodBase.GetCurrentMethod().DeclaringType); | |
// Create workbook object | |
Workbook workbook = new Workbook(); | |
// Access the first worksheet | |
Worksheet worksheet = workbook.Worksheets[0]; | |
// Access cells | |
Cell cell1 = worksheet.Cells["A1"]; | |
Cell cell2 = worksheet.Cells["B1"]; | |
// Set the styles of both cells to Times New Roman | |
Style styleObject = workbook.CreateStyle(); | |
styleObject.Font.Color = System.Drawing.Color.Red; | |
styleObject.Font.Name = "Times New Roman"; | |
cell1.SetStyle(styleObject); | |
cell2.SetStyle(styleObject); | |
// Put the values inside the cell | |
cell1.PutValue("Hello World!"); | |
cell2.PutValue("Hello World!!"); | |
// Save to Pdf without setting PdfSaveOptions.IsFontSubstitutionCharGranularity | |
workbook.Save(dataDir + "SampleOutput_out.xlsx"); |
بسبب الCell.GetStyle/Cell.SetStyle يستخدم الأسلوب ذاكرة أقل بكثير ، وهو فعال ، تمت إزالة خاصية النمط Cell الأقدم التي استهلكت الكثير من الذاكرة غير الضرورية ، مع إصدار Aspose.Cells 7.1.0.