读写XLSM文件格式
Contents
[
Hide
]
可能的使用场景
微软Excel支持多种格式,例如XLS、XLSX、XLSM、XLSB、CSV等。Aspose.Cells也支持许多这些格式。本文介绍了如何使用Aspose.Cells以XLSM格式读写Excel文件。
读写XLSM文件格式
以下示例代码加载源XLSM文件,读取A1单元格,然后将内容复制到C4单元格,并保存为输出XLSM文件。
示例代码
This file contains hidden or 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
loadOptions, _ := NewLoadOptions(LoadFormat_Numbers) | |
workbook, _ := NewWorkbook_String_LoadOptions("48496674.numbers", loadOptions) | |
workbook.Save_String("48496675.pdf") |