Imports a page range from a loaded document.

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

Parameters

ldDoc
PdfDocument
The loaded document.
startIndex
Int32
The start page index.
endIndex
Int32
The end page index.

Return Value

PdfPageBase
The last created page in the result document.

See Also