Obtenir des objets d ensembles d icônes, de barres de données ou d échelles de couleurs utilisés dans la mise en forme conditionnelle

Contents
[ ]

Le code d’exemple suivant montre comment lire des ensembles d’icônes utilisés pour la mise en forme conditionnelle. Avec l’API simple d’Aspose.Cells, les données d’image de l’ensemble d’icônes sont enregistrées en tant qu’image.

// 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);