클래스 테이블 제너레이터

참고

Documentize.TableGenerator 플러그인을 나타냅니다. PDF 문서에 테이블을 추가하는 데 사용됩니다.

public sealed class TableGenerator  

상속

object
TableGenerator

상속된 멤버

예제

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

// TableGenerator 생성  
var plugin = new TableGenerator();  
// 지침을 설정하기 위해 TableOptions 객체 생성  
TableOptions opt = new TableOptions().InsertPageBefore(1)  
   .AddTable()  
        .AddRow()  
            .AddCell().AddParagraph("이름")  
            .AddCell().AddParagraph("나이")  
        .AddRow()  
            .AddCell().AddParagraph("밥")  
            .AddCell().AddParagraph("12")  
        .AddRow()  
            .AddCell().AddParagraph("샘")  
            .AddCell().AddParagraph("20")  
        .AddRow()  
            .AddCell().AddParagraph("샌디")  
            .AddCell().AddParagraph("26")  
        .AddRow()  
            .AddCell().AddParagraph("톰")  
            .AddCell().AddParagraph("12")  
        .AddRow()  
            .AddCell().AddParagraph("짐")  
            .AddCell().AddParagraph("27");  
// 입력 파일 경로 추가  
opt.AddInput(new FileDataSource(inputPath1));  
// 출력 파일 경로 설정  
opt.AddOutput(new FileDataSource(outputPath));  
// 프로세스 수행  
plugin.Process(opt);  

생성자

TableGenerator()

public TableGenerator()  

메서드

Process(TableOptions)

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

public ResultContainer Process(TableOptions options)  

매개변수

  • options TableOptions: Documentize.TableGenerator에 대한 지침을 포함하는 옵션 객체입니다.

반환

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

네임스페이스: Documentize
어셈블리: Documentize.dll

 한국어