PageCollectionInsertNewPage Method |
Creates a new PDF page with the specified size, margins and orientation and inserts it into the collection
at the specified index
Namespace:
ExpertPdf.PdfCreator
Assembly:
epdfcreator (in epdfcreator.dll) Version: 17.0.0
Syntax public PdfPage InsertNewPage(
int index,
PageSize pageSize,
Margins pageMargins,
PageOrientation pageOrientation
)
Public Function InsertNewPage (
index As Integer,
pageSize As PageSize,
pageMargins As Margins,
pageOrientation As PageOrientation
) As PdfPage
Parameters
- index
- Type: SystemInt32
The index where to insert the new page. - pageSize
- Type: ExpertPdf.PdfCreatorPageSize
The PDF page size in points. - pageMargins
- Type: ExpertPdf.PdfCreatorMargins
The PDF page margins in points. - pageOrientation
- Type: ExpertPdf.PdfCreatorPageOrientation
The PDF page orientation.
Return Value
Type:
PdfPageThe newly created PDF page.
See Also