リビジョン XLSB を XLSM に変換
Contents
[
Hide
]
Aspose.Cells は、XLSB ファイルのリビジョンを XLSM ファイルに完全に変換できるようになりました。リビジョンはパス \xl\revisions 内にあります。 XLSB ファイル拡張子を ZIP に変更すると、それらを表示できます。 \xl\revisions パスには、.bin 拡張子で終わるファイルが含まれています。
Aspose.Cells を使用して XLSB ファイルを XLSM ファイルに変換すると、これら 2 つのスクリーンショットに示すように、これらの .bin ファイルは .xml ファイルに正常に変換されます。
次のコード サンプルは、Aspose.Cells を使用して XLSB ファイルを XLSM 形式に変換する方法を示しています。
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// 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); |