Exportieren Sie Kommentare beim Speichern einer Excel-Datei unter HTML
Contents
[
Hide
]
Mögliche Nutzungsszenarien
Wenn Sie Ihre Excel-Datei in HTML speichern, werden Kommentare nicht exportiert. Aspose.Cells bietet diese Funktion jedoch über dieHtmlSaveOptions.IsExportComments Eigentum. Wenn Sie es einstellenwahrdann zeigt HTML auch Kommentare an, die in Ihrer Excel-Datei vorhanden sind.
Exportieren Sie Kommentare beim Speichern einer Excel-Datei unter HTML
Der folgende Beispielcode erläutert die Verwendung vonHtmlSaveOptions.IsExportCommentsEigentum. Der Screenshot zeigt die Auswirkung des Codes auf die HTML, wenn sie auf eingestellt istwahr . Bitte laden Sie die herunterBeispiel-Excel-Datei und diegeneriert HTML für eine Referenz.
Beispielcode
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); |