使用工具提示将 Excel 转换为 HTML
Contents
[
Hide
]
使用工具提示将 Excel 转换为 HTML
在某些情况下,生成的 HTML 中的文本可能会被截断,而您希望将完整的文本显示为悬停事件的工具提示。 Aspose.Cells 通过提供支持这一点**HtmlSaveOptions.AddTooltipText**财产。设定**HtmlSaveOptions.AddTooltipText**财产给**真的**将在生成的 HTML 中添加完整文本作为工具提示。
下图显示了生成的 HTML 文件中的工具提示。
以下代码示例加载源文件并生成输出 HTML 文件与工具提示。
示例代码
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); |