Converter

Converter(Func<Stream>)

の新しいインスタンスを初期化しますConverterclass.

public Converter(Func<Stream> document)
パラメータ タイプ 説明
document Func`1 読み取り可能なストリームを返すメソッド。

例外

例外 調子
ArgumentNullException スローされるタイミングdocument無効である。

備考

もっと詳しく知る

関連項目


Converter(Func<Stream>, Func<ConverterSettings>)

の新しいインスタンスを初期化しますConverterclass.

public Converter(Func<Stream> document, Func<ConverterSettings> settings)
パラメータ タイプ 説明
document Func`1 読み取り可能なストリームを返すメソッド。
settings Func`1 コンバーターの設定。

備考

もっと詳しく知る

関連項目


Converter(Func<Stream>, Func<LoadOptions>)

の新しいインスタンスを初期化しますConverterclass.

public Converter(Func<Stream> document, Func<LoadOptions> loadOptions)
パラメータ タイプ 説明
document Func`1 読み取り可能なストリームを返すメソッド。
loadOptions Func`1 ドキュメント読み込みオプションを返すメソッド。

備考

もっと詳しく知る

関連項目


Converter(Func<Stream>, Func<LoadOptions>, Func<ConverterSettings>)

の新しいインスタンスを初期化しますConverterclass.

public Converter(Func<Stream> document, Func<LoadOptions> loadOptions, 
    Func<ConverterSettings> settings)
パラメータ タイプ 説明
document Func`1 読み取り可能なストリームを返すメソッド。
loadOptions Func`1 ドキュメント読み込みオプションを返すメソッド。
settings Func`1 コンバーターの設定。

備考

もっと詳しく知る

関連項目


Converter(Func<Stream>, Func<FileType, LoadOptions>)

の新しいインスタンスを初期化しますConverterclass.

public Converter(Func<Stream> document, Func<FileType, LoadOptions> loadOptions)
パラメータ タイプ 説明
document Func`1 読み取り可能なストリームを返すメソッド。
loadOptions Func`2 ドキュメント読み込みオプションを返すメソッド. ソースファイルのタイプ

備考

もっと詳しく知る

関連項目


Converter(Func<Stream>, Func<FileType, LoadOptions>, Func<ConverterSettings>)

の新しいインスタンスを初期化しますConverterclass.

public Converter(Func<Stream> document, Func<FileType, LoadOptions> loadOptions, 
    Func<ConverterSettings> settings)
パラメータ タイプ 説明
document Func`1 読み取り可能なストリームを返すメソッド。
loadOptions Func`2 ドキュメント読み込みオプションを返すメソッド. ソースファイルのタイプ
settings Func`1 コンバーターの設定。

備考

もっと詳しく知る

関連項目


Converter(string)

の新しいインスタンスを初期化しますConverterclass.

public Converter(string filePath)
パラメータ タイプ 説明
filePath String ソース ドキュメントへのファイル パス。

備考

もっと詳しく知る

関連項目


Converter(string, Func<ConverterSettings>)

の新しいインスタンスを初期化しますConverterclass.

public Converter(string filePath, Func<ConverterSettings> settings)
パラメータ タイプ 説明
filePath String ソース ドキュメントへのファイル パス。
settings Func`1 コンバーターの設定。

備考

もっと詳しく知る

関連項目


Converter(string, Func<LoadOptions>)

の新しいインスタンスを初期化しますConverterclass.

public Converter(string filePath, Func<LoadOptions> loadOptions)
パラメータ タイプ 説明
filePath String ソース ドキュメントへのファイル パス。
loadOptions Func`1 ドキュメント読み込みオプションを返すメソッド。

備考

もっと詳しく知る

関連項目


Converter(string, Func<LoadOptions>, Func<ConverterSettings>)

の新しいインスタンスを初期化しますConverterclass.

public Converter(string filePath, Func<LoadOptions> loadOptions, Func<ConverterSettings> settings)
パラメータ タイプ 説明
filePath String ソース ドキュメントへのファイル パス。
loadOptions Func`1 ドキュメント読み込みオプションを返すメソッド。
settings Func`1 コンバーターの設定。

備考

もっと詳しく知る

関連項目


Converter(string, Func<FileType, LoadOptions>)

の新しいインスタンスを初期化しますConverterclass.

public Converter(string filePath, Func<FileType, LoadOptions> loadOptions)
パラメータ タイプ 説明
filePath String ソース ドキュメントへのファイル パス。
loadOptions Func`2 ドキュメント読み込みオプションを返すメソッド. ソースファイルのタイプ

備考

もっと詳しく知る

関連項目


Converter(string, Func<FileType, LoadOptions>, Func<ConverterSettings>)

の新しいインスタンスを初期化しますConverterclass.

public Converter(string filePath, Func<FileType, LoadOptions> loadOptions, 
    Func<ConverterSettings> settings)
パラメータ タイプ 説明
filePath String ソース ドキュメントへのファイル パス。
loadOptions Func`2 ドキュメント読み込みオプションを返すメソッド. ソースファイルのタイプ
settings Func`1 コンバーターの設定。

備考

もっと詳しく知る

関連項目


Converter()

の新しいインスタンスを初期化しますConverter流暢な変換設定のクラス.

public Converter()

備考

流暢な変換の使用例:

var converter = new Converter();
converter
    .Load("")
    .ConvertTo("")
    .Convert();
converter
    .WithSettings(() => new ConverterSettings())
    .Load("").WithOptions(new PdfLoadOptions())
    .ConvertTo("").WithOptions(new PdfConvertOptions())
    .OnConversionCompleted(convertedDocumentStream => { })
    .Convert();
converter
    .Load("").WithOptions(new PdfLoadOptions())
    .ConvertByPageTo((number => new FileStream("", FileMode.Create))).WithOptions(new PdfConvertOptions())
    .OnConversionCompleted((number, stream) => {})
    .Convert();
converter.Load("").GetPossibleConversions();
converter.Load("").GetDocumentInfo();
converter.Load("").WithOptions(new PdfLoadOptions()).GetPossibleConversions();
converter.Load("").WithOptions(new PdfLoadOptions()).GetDocumentInfo();

関連項目