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 객체입니다.

 한국어