PdfDocumentBase
ImportPageRange Method (PdfDocumentBase, Int32, 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,
int resultPageIndex
)
Public Function ImportPageRange (
ldDoc As PdfDocumentBase,
startIndex As Integer,
endIndex As Integer,
resultPageIndex As Integer
) As PdfPageBase
public:
PdfPageBase^ ImportPageRange(
PdfDocumentBase^ ldDoc,
int startIndex,
int endIndex,
int resultPageIndex
)
member ImportPageRange :
ldDoc : PdfDocumentBase *
startIndex : int *
endIndex : int *
resultPageIndex : 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.
-
resultPageIndex
-
Type:
System
Int32
The page index in the result document when startIndex == endIndex.
Return Value
Type:
PdfPageBase
The last created page in the result document.
See Also