将 Excel 文件保存到 HTML 时导出注释

可能的使用场景

将 Excel 文件保存到 HTML 时,不会导出注释。但是,Aspose.Cells 使用HtmlSaveOptions.IsExportComments财产。如果你设置它真的那么 HTML 也将显示 Excel 文件中的注释。

将 Excel 文件保存到 HTML 时导出注释

下面的示例代码解释了HtmlSaveOptions.IsExportComments财产。截图显示代码在HTML设置为时的效果真的.请下载示例 Excel 文件生成 HTML供参考。

待办事项:图片_替代_文本

示例代码

// 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);