Class TextConverter
情報
テキストベースのフォーマット(csv, markdown, dif…)と他のスプレッドシートファイル形式の間で変換するためのコンバータ。
public class TextConverter
継承
継承されたメンバー
- object.ToString()
- object.Equals(object)
- object.Equals(object, object)
- object.ReferenceEquals(object, object)
- object.GetHashCode()
- object.GetType()
- object.MemberwiseClone()
例
1
2
3TextConverter converter = new TextConverter();
4LoadOptions loadOptions = new LoadOptions();
5loadOptions.InputFile = "Template.csv";
6TextSaveOptions saveOptions = new TextSaveOptions();
7saveOptions.OutputFile = "res.xlsx";
8converter.Process(loadOptions, saveOptions);
コンストラクタ
TextConverter()
public TextConverter()
メソッド
Process(LoadOptions, TextSaveOptions)
テキストベースのフォーマットと他のスプレッドシートファイル形式の間でファイルフォーマットを変換します
public void Process(LoadOptions loadOptions, TextSaveOptions saveOptions)
パラメータ
loadOptions
LoadOptions: 入力および読み込みのオプション:saveOptions
TextSaveOptions: 出力および保存のオプション
名前空間: Sheetize
アセンブリ: Sheetize.dll