اقرأ جدول البيانات Numbers الذي طورته شركة Apple Inc. باستخدام Aspose.Cells
Contents
[
Hide
]
سيناريوهات الاستخدام الممكنة
Numbers هو تطبيق جداول بيانات تم تطويره بواسطة شركة Apple Inc.. Aspose.Cells يمكنه قراءة جدول بيانات Numbers ولكنه لا يدعم الكتابة إليه. يمكنه قراءة Numbers بيانات جدول البيانات والنمط والصيغ.
اقرأ جدول البيانات Numbers الذي طورته شركة Apple Inc. باستخدام Aspose.Cells
يقوم نموذج التعليمات البرمجية التالي بتحميل ملفنموذج جدول بيانات Numbers ويحولها إلىتنسيق الإخراج PDF . سيكون عليك استخدام**[LoadOptions] (https://reference.aspose.com/cells/net/aspose.cells/loadoptions)** فئة وتحديد**[LoadFormat.Numbers] (https://reference.aspose.com/cells/net/aspose.cells/loadformat)**كمعامل في المنشئ لتحميله بنجاح. يرجى تنزيل كلاهما من الروابط المحددة. يمكنك تجربة الكود مع أي جدول بيانات Numbers. يرجى أيضًا قراءة تعليقات الكود لمزيد من المساعدة.
عينة من الرموز
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 | |
//Specify load options, we want to load Numbers spreadsheet | |
LoadOptions opts = new LoadOptions(LoadFormat.Numbers); | |
//Load the Numbers spreadsheet in workbook with above load options | |
Workbook wb = new Workbook(sourceDir + "sampleNumbersByAppleInc.numbers", opts); | |
//Save the workbook to pdf format | |
wb.Save(outputDir + "outputNumbersByAppleInc.pdf", SaveFormat.Pdf); |