قم بتحويل Excel إلى HTML باستخدام تلميح الأداة
Contents
[
Hide
]
قم بتحويل Excel إلى HTML باستخدام تلميح الأداة
قد تكون هناك حالات يتم فيها قطع النص في HTML الذي تم إنشاؤه وتريد عرض النص الكامل كتلميح أداة في حدث التمرير. Aspose.Cells يدعم هذا من خلال توفير**[HtmlSaveOptions.AddTooltipText] (https://reference.aspose.com/cells/java/com.aspose.cells/htmlsaveoptions#AddTooltipText)**خاصية. وضع**[HtmlSaveOptions.AddTooltipText] (https://reference.aspose.com/cells/java/com.aspose.cells/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); |