احصل على مجموعات الرموز أو أشرطة البيانات أو كائنات مقاييس الألوان المستخدمة في التنسيق الشرطي
Contents
[
Hide
]
في بعض الأحيان ، تحتاج إلى استرداد مجموعات الرموز المستخدمة في التنسيق الشرطي لخلية أو نطاق من الخلايا وتريد إنشاء ملف صورة بناءً عليه. قد تحتاج إلى قراءة أشرطة البيانات أو مقاييس الألوان المستخدمة في التنسيق الشرطي. Aspose.Cells يدعم هذه الميزة.
يُظهر نموذج التعليمات البرمجية التالي كيفية قراءة مجموعات الرموز المستخدمة في التنسيق الشرطي. باستخدام API البسيط لـ Aspose.Cell ، يتم حفظ بيانات صورة مجموعة الأيقونات كصورة.
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); | |
// Open a template Excel file | |
Workbook workbook = new Workbook(dataDir+ "book1.xlsx"); | |
// Get the first worksheet in the workbook | |
Worksheet sheet = workbook.Worksheets[0]; | |
// Get the A1 cell | |
Cell cell = sheet.Cells["A1"]; | |
// Get the conditional formatting result object | |
ConditionalFormattingResult cfr = cell.GetConditionalFormattingResult(); | |
// Get the icon set | |
ConditionalFormattingIcon icon = cfr.ConditionalFormattingIcon; | |
// Create the image file based on the icon's image data | |
File.WriteAllBytes(dataDir+ "imgIcon.out.jpg", icon.ImageData); |