C# 클래스 Aspose.Words.Examples.CSharp.Loading_Saving.DocumentPageSplitter

Splits a document into multiple documents, one per page.
파일 보기 프로젝트 열기: aspose-words/Aspose.Words-for-.NET 1 사용 예제들

Private Properties

프로퍼티 타입 설명

공개 메소드들

메소드 설명
DocumentPageSplitter ( LayoutCollector collector ) : System

Initializes new instance of this class. This method splits the document into sections so that each page Begins and ends at a section boundary. It is recommended not to modify the document afterwards.

GetDocumentOfPage ( int pageIndex ) : Document

Gets the document of a page.

GetDocumentOfPageRange ( int startIndex, int endIndex ) : Document

Gets the document of a page range.

메소드 상세

DocumentPageSplitter() 공개 메소드

Initializes new instance of this class. This method splits the document into sections so that each page Begins and ends at a section boundary. It is recommended not to modify the document afterwards.
public DocumentPageSplitter ( LayoutCollector collector ) : System
collector LayoutCollector A collector instance which has layout model records for the document.
리턴 System

GetDocumentOfPage() 공개 메소드

Gets the document of a page.
public GetDocumentOfPage ( int pageIndex ) : Document
pageIndex int 1-based index of a page.
리턴 Document

GetDocumentOfPageRange() 공개 메소드

Gets the document of a page range.
public GetDocumentOfPageRange ( int startIndex, int endIndex ) : Document
startIndex int 1-based index of the start page.
endIndex int 1-based index of the end page.
리턴 Document