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 InsertPage(
	PdfDocument ldDoc,
	int pageIndex,
	int resultPageIndex
)
Public Function InsertPage ( 
	ldDoc As PdfDocument,
	pageIndex As Integer,
	resultPageIndex As Integer
) As PdfPageBase
public:
PdfPageBase^ InsertPage(
	PdfDocument^ ldDoc, 
	int pageIndex, 
	int resultPageIndex
)
member InsertPage : 
        ldDoc : PdfDocument * 
        pageIndex : int * 
        resultPageIndex : int -> PdfPageBase 

Parameters

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

Return Value

PdfPageBase
The page in the result document.

See Also