Method AddSignatureField
- Namespace
- BitMiracle.Docotic.Pdf
- Assembly
- BitMiracle.Docotic.Pdf.dll
AddSignatureField(PdfPoint, PdfSize)
Adds a new unsigned signature field control with auto-generated name to the PdfPage.
public PdfSignatureField AddSignatureField(PdfPoint position, PdfSize size)
Parameters
position
PdfPointThe position of the upper-left corner of the signature field.
size
PdfSizeThe size of the signature field.
Returns
- PdfSignatureField
The newly created PdfSignatureField object.
Remarks
The Rotation of the new signature field is set to the rotation (Rotation) of the owner page.
Read the Sign PDF documents in C# and VB.NET article to see how to add PDF signature fields to pages.
AddSignatureField(PdfRectangle)
Adds a new unsigned signature field control with auto-generated name to the PdfPage.
public PdfSignatureField AddSignatureField(PdfRectangle boundingBox)
Parameters
boundingBox
PdfRectangleThe PdfRectangle structure that specifies the location and the size of the signature field.
Returns
- PdfSignatureField
The newly created PdfSignatureField object.
Remarks
The Rotation of the new signature field is set to the rotation (Rotation) of the owner page.
Read the Sign PDF documents in C# and VB.NET article to see how to add PDF signature fields to pages.
AddSignatureField(double, double, double, double)
Adds a new unsigned signature field control with auto-generated name to the PdfPage.
public PdfSignatureField AddSignatureField(double left, double top, double width, double height)
Parameters
left
doubleThe x-coordinate of the upper-left corner of the signature field.
top
doubleThe y-coordinate of the upper-left corner of the signature field.
width
doubleThe width of the signature field.
height
doubleThe height of the signature field.
Returns
- 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.
Read the Sign PDF documents in C# and VB.NET article to see how to add PDF signature fields to pages.
AddSignatureField(string, PdfPoint, PdfSize)
Adds a new unsigned signature field control with specified unique name to the PdfPage.
public PdfSignatureField AddSignatureField(string name, PdfPoint position, PdfSize size)
Parameters
name
stringThe unique name of the signature field control.
position
PdfPointThe position of the upper-left corner of the signature field.
size
PdfSizeThe size of the signature field.
Returns
- 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.
Read the Sign PDF documents in C# and VB.NET article to see how to add PDF signature fields to pages.
AddSignatureField(string?, PdfRectangle)
Adds a new unsigned signature field control with specified unique name to the PdfPage.
public PdfSignatureField AddSignatureField(string? name, PdfRectangle boundingBox)
Parameters
name
stringThe unique name of the signature field control.
boundingBox
PdfRectangleThe PdfRectangle structure that specifies the location and the size of the signature field.
Returns
- 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.
Read the Sign PDF documents in C# and VB.NET article to see how to add PDF signature fields to pages.
AddSignatureField(string?, double, double, double, double)
Adds a new unsigned signature field control with specified unique name to the PdfPage.
public PdfSignatureField AddSignatureField(string? name, double left, double top, double width, double height)
Parameters
name
stringThe unique name of the signature field control.
left
doubleThe x-coordinate of the upper-left corner of the signature field.
top
doubleThe y-coordinate of the upper-left corner of the signature field.
width
doubleThe width of the signature field.
height
doubleThe height of the signature field.
Returns
- 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.
Read the Sign PDF documents in C# and VB.NET article to see how to add PDF signature fields to pages.