SpreadsheetML2003SaveOptions

Hi,

I am using Aspose cells 8.3 jar
SpreadsheetML2003SaveOptions spreadsheetML2003SaveOptions = new SpreadsheetML2003SaveOptions(
com.aspose.cells.SaveFormat.SPREADSHEET_ML);
setSaveOptionProperties(spreadsheetML2003SaveOptions, outputFormatProperties);
workbook.save(outputFile.getAbsolutePath(), spreadsheetML2003SaveOptions);

In the above code I am saving Excel file to SpreadSheet_ml format using spreadsheetML2003SaveOptions. I there any suppport like word2010 ml format.?
And with which save format can we use OoxmlSaveOptions?

Thanks,
Jaspreet

Hi,


Well, Aspose.Cells can read and write to Spreadsheet ML file format, you may also utilize:
e.g
Sample code:

OoxmlSaveOptions saveOptions = new OoxmlSaveOptions(SaveFormat.SPREADSHEET_ML);
workbook.save(strFileName, saveOptions);

And, regarding word 2010 ml file format, please post your query into Aspose.Words forum, they will help you soon there.

Thank you.