PdfDocumentBase
ImportPageRange Method (PdfDocumentBase, Int32, Int32)
|
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 ImportPageRange(
PdfDocumentBase ldDoc,
int startIndex,
int endIndex
)
Public Function ImportPageRange (
ldDoc As PdfDocumentBase,
startIndex As Integer,
endIndex As Integer
) As PdfPageBase
public:
PdfPageBase^ ImportPageRange(
PdfDocumentBase^ ldDoc,
int startIndex,
int endIndex
)
member ImportPageRange :
ldDoc : PdfDocumentBase *
startIndex : int *
endIndex : int -> PdfPageBase
Parameters
-
ldDoc
-
Type:
Spire.Pdf
PdfDocumentBase
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