|
PdfPageCollectionInsert Method (Int32, PdfCustomPageSize, PdfMargins, PdfPageOrientation) |
Creates a new pdf page with the specified size, margins and orientation and inserts it into the pdf document pages collection
at the specified index.
Namespace:
SelectPdf
Assembly:
Select.Pdf (in Select.Pdf.dll) Version: 20.2
Syntax public PdfPage Insert(
int index,
PdfCustomPageSize pageSize,
PdfMargins pageMargins,
PdfPageOrientation pageOrientation
)
Public Function Insert (
index As Integer,
pageSize As PdfCustomPageSize,
pageMargins As PdfMargins,
pageOrientation As PdfPageOrientation
) As PdfPage
Parameters
- index
- Type: SystemInt32
The index where the new pdf page will be inserted. - pageSize
- Type: SelectPdfPdfCustomPageSize
The pdf page size. - pageMargins
- Type: SelectPdfPdfMargins
The pdf page margins. - pageOrientation
- Type: SelectPdfPdfPageOrientation
The pdf page orientation.
Return Value
Type:
PdfPageThe newly created pdf page.
See Also