Imports a page.

Namespace: Spire.Pdf
Assembly: Spire.Pdf (in Spire.Pdf.dll) Version: 7.9.2.0 (7.9.2.1020)

Syntax

            
 C#  Visual Basic  Visual C++  F# 
public PdfPageBase ImportPage(
	PdfDocumentBase ldDoc,
	int pageIndex,
	int resultPageIndex
)
Public Function ImportPage ( 
	ldDoc As PdfDocumentBase,
	pageIndex As Integer,
	resultPageIndex As Integer
) As PdfPageBase
public:
PdfPageBase^ ImportPage(
	PdfDocumentBase^ ldDoc, 
	int pageIndex, 
	int resultPageIndex
)
member ImportPage : 
        ldDoc : PdfDocumentBase * 
        pageIndex : int * 
        resultPageIndex : int -> PdfPageBase 

Parameters

ldDoc
PdfDocumentBase
The loaded document.
pageIndex
Int32
Index of the page.
resultPageIndex
Int32

Return Value

PdfPageBase
The page in the result document.

See Also