Converti Tabella in ODS

Aspose.Cells supporta la conversione di un file Excel con tabella in un file ODS. Devi semplicemente salvare il file in formato ODS e il file ODS generato avrà una tabella funzionante.

Codice di esempio

// For complete examples and data files, please go to https://github.com/aspose-cells/Aspose.Cells-for-.NET
//Source directory
string sourceDir = RunExamples.Get_SourceDirectory();
//Output directory
string outputDir = RunExamples.Get_OutputDirectory();
// Open an existing file that contains a table/list object in it
Workbook wb = new Workbook(sourceDir + "SampleTable.xlsx");
// Save the file
wb.Save(outputDir + "ConvertTableToOds_out.ods");

Il file ODS di output generato dal codice di esempio è allegato per il tuo riferimento.

Output ODS File