ExcelファイルをHTMLに保存しながらコメントをエクスポートする
Contents
[
Hide
]
ExcelファイルをHTMLに保存しながらコメントをエクスポートする
Excel を HTML に変換すると、コメントがエクスポートされません。 Aspose.Cells for Python via Java は、Excel から HTML への変換中にコメントをエクスポートする機能を提供します。これを実現するために、API はHtmlSaveOptions.IsExportComments財産。値の設定HtmlSaveOptions.IsExportCommentsプロパティへ真実出力 HTML にコメントをエクスポートします。
次のスクリーンショットは、サンプル コード スニペットによって生成された出力 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
source_directory = "Examples/SampleFiles/SourceDirectory/" | |
output_directory = "Examples/SampleFiles/OutputDirectory/" | |
# Load the Sample Workbook | |
workbook = Workbook(source_directory + "sampleExportCommentsHTML.xlsx") | |
# Initialize HtmlSaveOptions | |
saveOptions = HtmlSaveOptions() | |
saveOptions.setExportComments(True) | |
# Save the excel file. | |
workbook.save(output_directory + "outputExportCommentsHTML.html", saveOptions) |