Converti Excel in HTML con tooltip
Contents
[
Hide
]
Converti Excel in HTML con tooltip
Potrebbero verificarsi casi in cui il testo viene tagliato nel HTML generato e si desidera visualizzare il testo completo come suggerimento sull’evento al passaggio del mouse. Aspose.Cells supporta questo fornendo**HtmlSaveOptions.AddTooltipText**proprietà. Impostazione del**HtmlSaveOptions.AddTooltipText**proprietà a**VERO**aggiungerà il testo completo come suggerimento nel HTML generato.
L’immagine seguente mostra la descrizione comando nel file HTML generato.
L’esempio di codice seguente carica il filefile excel di originee genera iloutput HTML filecon il tooltip.
Codice d’esempio
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-Java | |
//directories | |
String sourceDir = Utils.Get_SourceDirectory(); | |
String outputDir = Utils.Get_OutputDirectory(); | |
// Open the template file | |
Workbook workbook = new Workbook(sourceDir + "AddTooltipToHtmlSample.xlsx"); | |
HtmlSaveOptions options = new HtmlSaveOptions(); | |
options.setAddTooltipText(true); | |
// Save as Markdown | |
workbook.save(outputDir + "AddTooltipToHtmlSample_out.html", options); |