Class PdfXls

Class PdfXls

Namespace: Aspose.Pdf.Plugins
Assembly: Aspose.PDF.dll

Aspose.Pdf.Plugins.PdfXls プラグインを表します。

public sealed class PdfXls : IPlugin, IDisposable

継承

objectPdfXls

実装

IPlugin, IDisposable

継承されたメンバー

object.GetType(), object.ToString(), object.Equals(object?), object.Equals(object?, object?), object.ReferenceEquals(object?, object?), object.GetHashCode()

この例では、PDFをXLSXドキュメントに変換する方法を示します。

// PdfXLS コンバータを作成
var converter = new PdfXLS();
// PdfToXLSOptions を作成
var opt = new PdfToXLSOptions();
// 入力ファイルパスを追加
opt.AddInput(new FileDataSource(inputPath));
// 出力ファイルパスを設定
opt.AddOutput(new FileDataSource(outputPath));
converter.Process(opt);

コンストラクタ

PdfXls()

public PdfXls()

メソッド

Dispose()

IDisposable の実装です。

public void Dispose()

Process(IPluginOptions)

指定されたパラメータでPdfToExcel処理を開始します。

public ResultContainer Process(IPluginOptions options)

パラメータ

options IPluginOptions

Aspose.Pdf.Plugins.PdfXlsの指示を含むオプションオブジェクトです。

戻り値

ResultContainer

操作の結果を含むAspose.Pdf.Plugins.ResultContainerオブジェクトです。

 日本語