Creates a new page and inserts it at the specified index.

Namespace: Spire.Pdf.Widget
Assembly: Spire.Pdf (in Spire.Pdf.dll) Version: 7.9.2.0 (7.9.2.1020)

Syntax

            
 C#  Visual Basic  Visual C++  F# 
public PdfPageBase Insert(
	int index,
	SizeF size
)
Public Function Insert ( 
	index As Integer,
	size As SizeF
) As PdfPageBase
public:
PdfPageBase^ Insert(
	int index, 
	SizeF size
)
member Insert : 
        index : int * 
        size : SizeF -> PdfPageBase 

Parameters

index
Int32
The index.
size
SizeF
The size of the page.

Return Value

PdfPageBase
The created page.

See Also