DetectEncoding

LoadOptions.DetectEncoding property

このオプションにより、TXTTSV 、 とCSVfiles encoding detection. デフォルトでエンコーディングが検出されない場合Encoding使用されています.

public bool DetectEncoding { get; set; }

備考

テキストおよびタブ/カンマ区切りファイルのレンダリングの詳細

この例は、このオプションの典型的な使用法を示しています.

LoadOptions loadOptions = new LoadOptions();
loadOptions.DetectEncoding = true; // エンコード検出を有効にする

using (Viewer viewer = new Viewer("employees.csv", loadOptions))
{
    HtmlViewOptions viewOptions = 
        HtmlViewOptions.ForEmbeddedResources();

    viewer.View(viewOptions);
}

関連項目