使用 Aspose.Cells 通过 Microsoft Excel 自动刷新 OLE 对象
Contents
[
Hide
]
Aspose.Cells 提供了OleObject.自动加载在 Microsoft Excel 中打开 excel 文件时刷新 OLE 对象的属性。由于此属性,OLE 对象将显示由 Microsoft Excel 生成的正确 OLE 图像。
下面的示例代码加载示例 excel 文件它有一个非真实的 OLE 图像。 OLE 对象实际上是一个 Microsoft Word 文档,但示例 excel 文件显示的是动物图像,而不是 Microsoft Word 图像。但是如果你打开输出excel文件,您将看到 Microsoft Excel 显示正确的 OLE 图像。
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); |