Creates a stamp element and adds it to the collection.

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 Add(
	float x,
	float y,
	float width,
	float height
)
Public Function Add ( 
	x As Single,
	y As Single,
	width As Single,
	height As Single
) As PdfPageTemplateElement
public:
PdfPageTemplateElement^ Add(
	float x, 
	float y, 
	float width, 
	float height
)
member Add : 
        x : float32 * 
        y : float32 * 
        width : float32 * 
        height : float32 -> PdfPageTemplateElement 

Parameters

x
Single
X co-ordinate of the stamp.
y
Single
Y co-ordinate of the stamp.
width
Single
Width of the stamp.
height
Single
Height of the stamp.

Return Value

PdfPageTemplateElement
The created stamp element.

See Also