Creates a new page and inserts it at a specific position in the document.

Namespace:  C1.Silverlight.Pdf
Assembly:  C1.Silverlight.Pdf (in C1.Silverlight.Pdf.dll)

Syntax

C#
public void Insert(
	int index
)
Visual Basic
Public Sub Insert ( _
	index As Integer _
)

Parameters

index
Type: System..::..Int32
The position where the new page will be inserted.

Remarks

The size of the new page is determined by the PageSize property of the parent document.

The new page becomes current after it is added to the document (see the CurrentPage property).

See Also