C++で保存時にDownlevel Revealed Commentsを無効にする

可能な使用シナリオ

ExcelファイルをHTMLに保存すると、Aspose.CellsはDownlevel Conditional Commentsを表示します。これらの条件付きコメントは主に古いバージョンのInternet Explorerに関連しており、最新のWebブラウザには無関係です。詳細については以下のリンクをご参照ください。

Aspose.Cellsでは、HtmlSaveOptions.GetDisableDownlevelRevealedComments() プロパティを true に設定して、これらのDownlevel Revealed Commentsを排除することができます。

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

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

todo:image_alt_text

サンプルコード

#include <iostream>
#include "Aspose.Cells.h"
using namespace Aspose::Cells;

int main()
{
    Aspose::Cells::Startup();

    // For complete examples and data files, please go to https://github.com/aspose-cells/Aspose.Cells-for-C

    // Load sample workbook
    U16String sourceDir(u"..\\Data\\01_SourceDirectory\\");
    U16String outputDir(u"..\\Data\\02_OutputDirectory\\");

    Workbook wb(sourceDir + u"sampleDisableDownlevelRevealedComments.xlsx");

    // Disable DisableDownlevelRevealedComments
    HtmlSaveOptions opts;
    opts.SetDisableDownlevelRevealedComments(true);

    // Save the workbook in html
    wb.Save(outputDir + u"outputDisableDownlevelRevealedComments_true.html", opts);

    std::cout << "Workbook saved successfully with DisableDownlevelRevealedComments enabled!" << std::endl;

    Aspose::Cells::Cleanup();
}