HTML に保存する際にダウンレベルの公開コメントを無効にする
Contents
[
Hide
]
考えられる使用シナリオ
Excel ファイルを HTML に保存すると、Aspose.Cells でダウンレベルの条件付きコメントが表示されます。これらの条件付きコメントは、主に古いバージョンの Internet Explorer に関連しており、最新の Web ブラウザーには関連していません。それらについては、次のリンクで詳しく読むことができます。
Aspose.Cells を設定すると、これらのダウンレベルの公開コメントを削除できます。HtmlSaveOptions.DisableDownlevelRevealedCommentsプロパティへ真実.
HTML に保存する際にダウンレベルの公開コメントを無効にする
次のサンプル コードは、HtmlSaveOptions.DisableDownlevelRevealedComments財産。スクリーンショットは、このプロパティが true に設定されていない場合の効果を示しています。をダウンロードしてくださいサンプル 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 workbook | |
Workbook wb = new Workbook(sourceDir + "sampleDisableDownlevelRevealedComments.xlsx"); | |
//Disable DisableDownlevelRevealedComments | |
HtmlSaveOptions opts = new HtmlSaveOptions(); | |
opts.DisableDownlevelRevealedComments = true; | |
//Save the workbook in html | |
wb.Save(outputDir + "outputDisableDownlevelRevealedComments_true.html", opts); |