Creates a new page template.

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

Syntax

            
 C#  Visual Basic  Visual C++  F# 
public PdfPageTemplateElement(
	float x,
	float y,
	float width,
	float height,
	PdfNewPage page
)
Public Sub New ( 
	x As Single,
	y As Single,
	width As Single,
	height As Single,
	page As PdfNewPage
)
public:
PdfPageTemplateElement(
	float x, 
	float y, 
	float width, 
	float height, 
	PdfNewPage^ page
)
new : 
        x : float32 * 
        y : float32 * 
        width : float32 * 
        height : float32 * 
        page : PdfNewPage -> PdfPageTemplateElement

Parameters

x
Single
X co-ordinate of the template.
y
Single
Y co-ordinate of the template.
width
Single
Width of the template.
height
Single
Height of the template.
page
PdfNewPage
The Current Page object.

See Also