Actualiser automatiquement un objet OLE via Microsoft Excel en utilisant Aspose.Cells

Contents
[ ]

Le code d’exemple suivant charge le fichier Excel d’exemple qui contient une image OLE non réelle. L’objet OLE est en fait un document Microsoft Word mais le fichier Excel d’exemple affiche l’image d’animal au lieu de l’image de Microsoft Word. Mais si vous ouvrez le fichier Excel de sortie, vous verrez que Microsoft Excel affiche l’image OLE correcte.

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