Do Spire components (word/excel/powerpoint) (for .NET) support import/export/manipulate of ODF (odt/ods/odp) file format?
If not, will you plan to add that support? What will be the schedule?
Presentation ppt = new Presentation();
//or load odp file
ppt.LoadFromFile("sample.pptx");
ppt.SaveToFile("result.odp", FileFormat.ODP);
Workbook workbook = new Workbook();
//or load ods file
workbook.LoadFromFile("Sample.xlsx");
workbook.SaveToFile("Result.ods",FileFormat.ODS);