-
Couldn't load subscription status.
- Fork 1
Support for OpenOffice Spreadsheet
Aspose edited this page Mar 17, 2014
·
1 revision
About OpenDocument
The OpenDocument format (ODF) is a free and open file format for electronic office documents originally developed by Sun for the Open Office suite. OpenDocument Spreadsheet (ODS) is the file format for Excel documents. OpenDocument is currently an OASIS and ISO standard.
Save Format involves conversion to various other formats as well. This feature of Aspose provide flexibility to Open Office Users/developers.
//Conversion from Ods
Workbook workbook = new Workbook("sample.ods");
workbook.Save("Converted from ODS to XLS.xlsx",SaveFormat.Xlsx);
//Conversion to Ods
Workbook workbook = new Workbook( "Excel Test file.xlsx");
workbook.Save("Converted from XLS to ODS.ods", SaveFormat.ODS);
Download