Actualiser automatiquement l'objet OLE via Microsoft Excel en utilisant Aspose.Cells
Contents
[
Hide
]
Aspose.Cells fournit leOleObject.AutoLoad propriété pour actualiser l’objet OLE lorsque le fichier Excel est ouvert dans Microsoft Excel. En raison de cette propriété, l’objet OLE affichera l’image OLE correcte générée par Microsoft Excel.
L’exemple de code suivant charge leexemple de fichier excel qui a une image OLE non réelle. L’objet OLE est en fait un document Word Microsoft, mais l’exemple de fichier Excel montre l’image de l’animal au lieu de l’image Word Microsoft. Mais si vous ouvrez lefichier excel de sortie, vous verrez Microsoft Excel affiche l’image OLE correcte.
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 from your sample excel file | |
Workbook wb = new Workbook(dataDir + "sample.xlsx"); | |
// Access first worksheet | |
Worksheet sheet = wb.Worksheets[0]; | |
// Set auto load property of first ole object to true | |
sheet.OleObjects[0].AutoLoad = true; | |
// Save the worbook in xlsx format | |
wb.Save(dataDir + "RefreshOLEObjects_out.xlsx", SaveFormat.Xlsx); |