Aggiorna automaticamente l'oggetto OLE tramite Microsoft Excel utilizzando Aspose.Cells

Contents
[ ]

Il codice di esempio seguente carica il filefile excel di esempio che ha un’immagine OLE non reale. L’oggetto OLE è in realtà un documento Word Microsoft, ma il file Excel di esempio mostra l’immagine dell’animale anziché l’immagine Word Microsoft. Ma se apri il filefile excel di output, vedrai Microsoft Excel visualizza l’immagine OLE corretta.

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