将 Excel 文件保存到 HTML 时导出注释
Contents
[
Hide
]
可能的使用场景
将 Excel 文件保存到 HTML 时,不会导出注释。但是,Aspose.Cells 使用HtmlSaveOptions.IsExportComments财产。如果你设置它真的那么 HTML 也将显示 Excel 文件中的注释。
将 Excel 文件保存到 HTML 时导出注释
下面的示例代码解释了HtmlSaveOptions.IsExportComments财产。截图显示代码在HTML设置为时的效果真的.请下载示例 Excel 文件和生成 HTML供参考。
示例代码
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 | |
//Load sample Excel file | |
Workbook wb = new Workbook(sourceDir + "sampleExportCommentsHTML.xlsx"); | |
//Export comments - set IsExportComments property to true | |
HtmlSaveOptions opts = new HtmlSaveOptions(); | |
opts.IsExportComments = true; | |
//Save the Excel file to HTML | |
wb.Save(outputDir + "outputExportCommentsHTML.html", opts); |