| PdfPageCollectionInsertPageAt(Int32, Single, Single) Method |
Inserts a new page into the collection at the specified index.
Namespace: Patagames.Pdf.NetAssembly: Patagames.Pdf (in Patagames.Pdf.dll) Version: 4.94.2704
Syntax public PdfPage InsertPageAt(
int index,
float width,
float height
)
Public Function InsertPageAt (
index As Integer,
width As Single,
height As Single
) As PdfPage
public:
PdfPage^ InsertPageAt(
int index,
float width,
float height
)
member InsertPageAt :
index : int *
width : float32 *
height : float32 -> PdfPage
public PdfPage InsertPageAt(
int index,
float width,
float height
)
function InsertPageAt(index, width, height);
Parameters
- index Int32
- The zero-based index at which page should be inserted.
- width Single
- The page width.
- height Single
- The page height.
Return Value
PdfPageA PdfPage that has been inserted into a document.
See Also