قم بتحديث كائن OLE تلقائيًا عبر Microsoft Excel باستخدام Aspose.Cells
Contents
[
Hide
]
يوفر Aspose.Cells ملفOleObject.AutoLoad لتحديث كائن OLE عند فتح ملف Excel في Microsoft Excel. بسبب هذه الخاصية ، سيعرض كائن OLE صورة OLE الصحيحة التي تم إنشاؤها بواسطة Microsoft Excel.
يقوم نموذج التعليمات البرمجية التالي بتحميل ملفنموذج ملف اكسل الذي يحتوي على صورة OLE غير حقيقية. كائن OLE هو في الواقع مستند Word Microsoft لكن نموذج ملف Excel يعرض صورة الحيوان بدلاً من Microsoft Word image. ولكن إذا قمت بفتح ملفملف اكسل الناتج، سترى 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); |