Adds a new unsigned signature field control with specified unique name
to the
PdfPage.
Namespace:
BitMiracle.Docotic.Pdf
Assembly:
BitMiracle.Docotic.Pdf (in BitMiracle.Docotic.Pdf.dll)
Syntax
C#
public PdfSignatureField AddSignatureField(
string name,
double left,
double top,
double width,
double height
)
VB
Public Function AddSignatureField (
name As String,
left As Double,
top As Double,
width As Double,
height As Double
) As PdfSignatureField
Parameters
- name
- Type: System.String
The unique name of the signature field control. - left
- Type: System.Double
The x-coordinate of the upper-left corner of
the signature field. - top
- Type: System.Double
The y-coordinate of the upper-left corner of
the signature field. - width
- Type: System.Double
The width of the signature field. - height
- Type: System.Double
The height of the signature field.
Return Value
Type:
PdfSignatureField
The newly created
PdfSignatureField object.
Remarks
Provide zero width and/or height to have an invisible signature field.
The Rotation of the new signature field is set to the rotation
(Rotation) of the owner page.
See Also