Convertir la révision des XLSB en XLSM

Contents
[ ]

L’exemple de code suivant vous montre comment convertir le fichier XLSB en format XLSM à l’aide de Aspose.Cells.

// For complete examples and data files, please go to https://github.com/aspose-cells/Aspose.Cells-for-.NET
// The path to the documents directory.
string dataDir = RunExamples.GetDataDir(System.Reflection.MethodBase.GetCurrentMethod().DeclaringType);
// Open workbook
Workbook workbook = new Workbook(dataDir + "sample.xlsb");
// Save Workbook to XLSM format
workbook.Save(dataDir + "output_out.xlsm", SaveFormat.Xlsm);