Class TableGenerator

Class TableGenerator

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

Aspose.PDF TableGenerator 플러그인을 나타냅니다.

public sealed class TableGenerator : IPlugin, IDisposable

상속

objectTableGenerator

구현

IPlugin, IDisposable

상속된 멤버

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

예제

이 예제는 PDF 파일에 테이블을 추가하는 방법을 보여줍니다.

// TableGenerator 생성
var generator = new TableGenerator();
// 지침을 설정하기 위해 TableOptions 객체 생성
var opt = new TableOptions();
// 입력 파일 경로 추가
opt.AddInput(new FileDataSource(inputPath1));
opt.AddInput(new FileDataSource(inputPath2));
// 출력 파일 경로 설정
opt.AddOutput(new FileDataSource(outputPath));
// 추출 프로세스 수행
generator.Process(opt);

생성자

TableGenerator()

public TableGenerator()

메서드

Dispose()

IDisposable의 구현입니다. 실제로 TableGenerator에는 필요하지 않습니다.

public void Dispose()

Process(IPluginOptions)

지정된 매개변수로 PdfGenerator 처리를 시작합니다.

public ResultContainer Process(IPluginOptions options)

매개변수

options IPluginOptions

PdfGenerator에 대한 지침을 포함하는 옵션 객체입니다.

반환

ResultContainer

작업 결과를 포함하는 ResultContainer 객체입니다.

예외

NotSupportedException

 한국어