在保存为HTML时禁用旧版条件注释的显示
在保存为HTML时禁用下级可见的批注
当将Excel文件转换为HTML时,Aspose.Cells会在输出HTML文件中添加Downlevel-revealed条件注释。这些条件注释大多与旧版本的Internet Explorer有关,在现代浏览器中不相关。有关Downlevel-revealed条件注释的更多信息,请访问以下链接
为了删除Downlevel-revealed条件注释,Aspose.Cells提供了HtmlSaveOptions.DisableDownlevelRevealedComments属性。将HtmlSaveOptions.DisableDownlevelRevealedComments属性设置为True将会删除输出HTML文件中的Downlevel-revealed条件注释。
以下图片显示了将在输出HTML文件中删除的Downlevel-revealed条件注释
示例代码
source_directory = "Examples/SampleFiles/SourceDirectory/" | |
output_directory = "Examples/SampleFiles/OutputDirectory/" | |
# Load the Sample Workbook | |
workbook = Workbook(source_directory + "sampleDisableDownlevelRevealedComments.xlsx") | |
# Initialize HtmlSaveOptions | |
saveOptions = HtmlSaveOptions() | |
# Disable DisableDownlevelRevealedComments | |
saveOptions.setDisableDownlevelRevealedComments(True) | |
# Save the excel file. | |
workbook.save(output_directory + "outputDisableDownlevelRevealedComments_true.html", saveOptions) |