Node.js経由でC++を使用して、HTMLに保存する際のDownlevel Revealed Commentsを無効にする

可能な使用シナリオ

ExcelファイルをHTMLに保存するとき、Aspose.CellsはDownlevel Conditional Commentsを表示します。これらの条件付きコメントは主に古いバージョンのInternet Explorerに関連しており、現代のWebブラウザには関係ありません。詳細は以下のリンクで確認できます。

Aspose.Cells for Node.js via C++では、HtmlSaveOptions.getDisableDownlevelRevealedComments()プロパティをtrueに設定することで、これらのDownlevel Revealed Commentsを排除できます。

HTML への保存時にダウンレベルの表示されたコメントを無効にする

以下のサンプルコードはHtmlSaveOptions.getDisableDownlevelRevealedComments()プロパティの使い方を示しており、設定されていない場合の効果もスクリーンショットで示しています。このコードで使用されるサンプルExcelファイル(50528257.xlsx)と、生成された出力HTML(50528258.zip)も参考としてダウンロードしてください。

todo:image_alt_text

サンプルコード

const AsposeCells = require("aspose.cells.node");
const path = require("path");

// The path to the documents directory.
const sourceDir = path.join(__dirname, "data");
const outputDir = path.join(__dirname, "output");

// Load sample workbook
const workbook = new AsposeCells.Workbook(path.join(sourceDir, "sampleDisableDownlevelRevealedComments.xlsx"));

// Disable DisableDownlevelRevealedComments
const opts = new AsposeCells.HtmlSaveOptions();
opts.setDisableDownlevelRevealedComments(true);

// Save the workbook in html
workbook.save(path.join(outputDir, "outputDisableDownlevelRevealedComments_true.html"), opts);