Conversion from xlsx to xls/cvs/xml format

Hi,

I have to change my xlsx file to other format such as cvs/xls . Does Aspose-API supprorts this functionality ? As I am new to this API, can you direct me to achive this?

Thanks

Hi,


Yes, this conversion is supported by the component, see the sample code:
Workbook workbook = new Workbook(@“e:\test\MyFile.xlsx”);
workbook.Save(“e:\test\output1.xls”, SaveFormat.Excel97To2003);
workbook.Save(“e:\test\output2.csv”, SaveFormat.CSV);


Please also see the following documents for your complete reference:
http://docs.aspose.com/display/cellsnet/Opening+Files
http://docs.aspose.com/display/cellsnet/Saving+Files


Thank you.