PdfPage.AddSignatureField Method (PdfPoint, PdfSize)

Adds a new unsigned signature field control with auto-generated name to the PdfPage.

Namespace:  BitMiracle.Docotic.Pdf
Assembly:  BitMiracle.Docotic.Pdf (in BitMiracle.Docotic.Pdf.dll)

Syntax

C#
public PdfSignatureField AddSignatureField(
	PdfPoint position,
	PdfSize size
)
VB
Public Function AddSignatureField ( 
	position As PdfPoint,
	size As PdfSize
) As PdfSignatureField

Parameters

position
Type: BitMiracle.Docotic.Pdf.PdfPoint
The position of the upper-left corner of the signature field.
size
Type: BitMiracle.Docotic.Pdf.PdfSize
The size of the signature field.

Return Value

Type: PdfSignatureField
The newly created PdfSignatureField object.

Remarks

The Rotation of the new signature field is set to the rotation (Rotation) of the owner page.

See Also