Convertir Excel a HTML con encabezados
Contents
[
Hide
]
Convertir Excel a HTML con encabezados
Aspose.Cells proporciona la opción de exportar encabezados al convertir Excel a HTML. Para esto, puedes establecer la propiedad HtmlSaveOptions.ExportHeadings en true. El valor predeterminado de la propiedad HtmlSaveOptions.ExportHeadings es false. La siguiente imagen muestra el archivo de salida generado por el siguiente código.
Código de muestra
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); |