تصدير التعليقات أثناء حفظ ملف Excel في HTML
Contents
[
Hide
]
سيناريوهات الاستخدام الممكنة
عند حفظ ملف Excel في HTML ، لا يتم تصدير التعليقات. ومع ذلك ، يوفر Aspose.Cells هذه الميزة باستخدام امتدادHtmlSaveOptions.SExportComments خاصية. إذا قمت بتعيينهحقيقي، ثم سيعرض HTML أيضًا التعليقات الموجودة في ملف Excel الخاص بك.
تصدير التعليقات أثناء حفظ ملف Excel في HTML
يشرح نموذج التعليمات البرمجية التالي استخدامHtmlSaveOptions.SExportCommentsخاصية. تُظهر لقطة الشاشة تأثير الكود على HTML عند ضبطه علىحقيقي . يرجى تنزيل ملفنموذج لملف Excel و الولدت 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-.NET | |
//Load sample Excel file | |
Workbook wb = new Workbook(sourceDir + "sampleExportCommentsHTML.xlsx"); | |
//Export comments - set IsExportComments property to true | |
HtmlSaveOptions opts = new HtmlSaveOptions(); | |
opts.IsExportComments = true; | |
//Save the Excel file to HTML | |
wb.Save(outputDir + "outputExportCommentsHTML.html", opts); |