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,
PdfPoint position,
PdfSize size
)
VB
Public Function AddSignatureField (
name As String,
position As PdfPoint,
size As PdfSize
) As PdfSignatureField
Parameters
- name
- Type: System.String
The unique name of the signature field control. - 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
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