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,
PdfRectangle boundingBox
)
VB
Public Function AddSignatureField (
name As String,
boundingBox As PdfRectangle
) As PdfSignatureField
Parameters
- name
- Type: System.String
The unique name of the signature field control. - boundingBox
- Type: BitMiracle.Docotic.Pdf.PdfRectangle
The PdfRectangle structure
that specifies the location and 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