احصل على رقم إصدار التطبيق الذي أنشأ مستند Excel
Contents
[
Hide
]
غالبًا ما تحتاج إلى معرفة رقم إصدار التطبيق الذي أنشأ مستند Excel Microsoft. يوفر Aspose.Cells ملفWorkbook.BuiltInDocumentProperties.Version خاصية لهذا الغرض.
يوضح نموذج التعليمات البرمجية التالي استخدامWorkbook.BuiltInDocumentProperties.Versionخاصية. يقوم بتحميل ملفات Excel التي تم إنشاؤها باستخدام Microsoft Excel 2003 و 2007 و 2010 و 2013 ويطبع رقم إصدار التطبيق الذي أنشأ مستندات Excel هذه.
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 | |
// Create a workbook reference | |
Workbook workbook = null; | |
// Print the version number of Excel 2003 XLS file | |
workbook = new Workbook("Excel2003.xls"); | |
Console.WriteLine("Excel 2003 XLS Version: " + workbook.BuiltInDocumentProperties.Version); | |
// Print the version number of Excel 2007 XLS file | |
workbook = new Workbook("Excel2007.xls"); | |
Console.WriteLine("Excel 2007 XLS Version: " + workbook.BuiltInDocumentProperties.Version); | |
// Print the version number of Excel 2010 XLS file | |
workbook = new Workbook("Excel2010.xls"); | |
Console.WriteLine("Excel 2010 XLS Version: " + workbook.BuiltInDocumentProperties.Version); | |
// Print the version number of Excel 2013 XLS file | |
workbook = new Workbook("Excel2013.xls"); | |
Console.WriteLine("Excel 2013 XLS Version: " + workbook.BuiltInDocumentProperties.Version); | |
// Print the version number of Excel 2007 XLSX file | |
workbook = new Workbook("Excel2007.xlsx"); | |
Console.WriteLine("Excel 2007 XLSX Version: " + workbook.BuiltInDocumentProperties.Version); | |
// Print the version number of Excel 2010 XLSX file | |
workbook = new Workbook("Excel2010.xlsx"); | |
Console.WriteLine("Excel 2010 XLSX Version: " + workbook.BuiltInDocumentProperties.Version); | |
// Print the version number of Excel 2013 XLSX file | |
workbook = new Workbook("Excel2013.xlsx"); | |
Console.WriteLine("Excel 2013 XLSX Version: " + workbook.BuiltInDocumentProperties.Version); |