Konvertieren Sie Excel in HTML mit Überschriften
Contents
[
Hide
]
Konvertieren Sie Excel in HTML mit Überschriften
Aspose.Cells bietet die Möglichkeit, Überschriften beim Konvertieren von Excel in HTML zu exportierenHtmlSaveOptions.ExportHeadings Eigentum zuwahr. Der Standardwert vonHtmlSaveOptions.ExportHeadings Eigentum istFALSCH. Das folgende Bild zeigt die vom folgenden Code generierte Ausgabedatei.
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 source file | |
Workbook workbook = new Workbook(sourceDir + "Book1.xlsx"); | |
HtmlSaveOptions options = new HtmlSaveOptions(); | |
options.ExportRowColumnHeadings = true; | |
// Save the workbook | |
workbook.Save(outputDir + "PrintHeadings_out.html", options); |