Creates a new page of the specified size and with the specified margins and adds it to the collection.

Namespace: Spire.Pdf.Widget
Assembly: Spire.Pdf (in Spire.Pdf.dll) Version: 6.2.6.0 (6.2.6.2020)

Syntax

            
 C#  Visual Basic  Visual C++  F# 
public PdfPageBase Add(
	SizeF size,
	PdfMargins margins,
	PdfPageRotateAngle rotation,
	PdfPageOrientation orientation
)
Public Function Add ( 
	size As SizeF,
	margins As PdfMargins,
	rotation As PdfPageRotateAngle,
	orientation As PdfPageOrientation
) As PdfPageBase
public:
PdfPageBase^ Add(
	SizeF size, 
	PdfMargins^ margins, 
	PdfPageRotateAngle rotation, 
	PdfPageOrientation orientation
)
member Add : 
        size : SizeF * 
        margins : PdfMargins * 
        rotation : PdfPageRotateAngle * 
        orientation : PdfPageOrientation -> PdfPageBase 

Parameters

size
SizeF
The size of the page.
margins
PdfMargins
The margins of the page.
rotation
PdfPageRotateAngle
The rotation of the new page.
orientation
PdfPageOrientation
The orientation of the new page.

Return Value

PdfPageBase
The created page.

See Also