تحويل دفاتر العمل Excel إلى Ods، Sxc و Fods (OpenOffice / LibreOffice calc).
حول OpenDocument
تنسيق OpenDocument (ODF) هو تنسيق ملف مجاني ومفتوح للوثائق المكتبية الإلكترونية الذي طوّره الأصل لـ OpenOffice suite. تنسيق الجدول الخلية OpenDocument (ODS) هو تنسيق الملفات لوثائق Excel. حاليًا يُعتبر OpenDocument معيارًا لـ OASIS و ISO.
تحويل Ods (OpenOffice / LibreOffice calc) إلى Excel
تدعم Aspose.Cells تحميل Ods، Sxc و Fods المدعومة من OpenOffice / LibreOffice Calc، وتحويل Ods، Sxc و Fods إلى ملفات Excel.
// For complete examples and data files, please go to https://github.com/aspose-cells/Aspose.Cells-for-.NET | |
//Load your source ods file | |
Workbook workbook = new Workbook("book1.ods"); | |
//Save as xlsx file | |
workbook.Save("ods_out.xlsx"); | |
//Load your source sxc file | |
workbook = new Workbook("book1.sxc"); | |
//Save as xls file | |
workbook.Save("sxc_out.xls"); | |
//Load your source fods file | |
workbook = new Workbook("book1.fods"); | |
//Save as xlsb file | |
workbook.Save("fods_out.xlsb"); |
تحويل Excel إلى Ods (OpenOffice / LibreOffice Calc)
تدعم Aspose.Cells تحويل ملفات Excel إلى ملفات Ods، Sxc و Fods. يوضح المثال على الكود أدناه كيفية تحويل القالب إلى ملفات Ods، Sxc و Fods.
// For complete examples and data files, please go to https://github.com/aspose-cells/Aspose.Cells-for-.NET | |
//Load your source workbook | |
Workbook workbook = new Workbook("book1.xlsx"); | |
// Save as ods file | |
workbook.Save("Out.ods"); | |
// Save as sxc file | |
workbook.Save("Out.sxc"); | |
// Save as fods file | |
workbook.Save("Out.fods"); |