Ottieni oggetti serie di icone, barre di dati o scala colori usati nella formattazione condizionale
Contents
[
Hide
]
A volte è necessario recuperare serie di icone utilizzate nella formattazione condizionale di una cella o di un intervallo di celle e si desidera creare un file immagine basato su di esse. Potresti avere bisogno di leggere le barre di dati o le scale colori utilizzate nella formattazione condizionale. Aspose.Cells supporta questa funzionalità.
Il seguente esempio di codice mostra come leggere serie di icone utilizzate per la formattazione condizionale. Con la semplice API di Aspose.Cell, i dati di immagine della serie di icone vengono salvati come immagine.
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); |