PdfDocument
InsertPageRange Method
|
Imports a page range from a loaded document.
Namespace:
Spire.Pdf
Assembly:
Spire.Pdf (in Spire.Pdf.dll) Version: 11.3.7.0 (11.3.7.1046)
Syntax
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
-
Type:
Spire.Pdf
PdfDocument
The loaded document.
-
startIndex
-
Type:
System
Int32
The start page index.
-
endIndex
-
Type:
System
Int32
The end page index.
Return Value
Type:
PdfPageBase
The last created page in the result document.
See Also