Skip to main content
A newer version of this page is available. .

PdfAcroFormSignatureField Class

Represents a signature field.

Namespace: DevExpress.Pdf

Assembly: DevExpress.Pdf.v18.2.Core.dll

Declaration

public class PdfAcroFormSignatureField :
    PdfAcroFormCommonVisualField

The following members return PdfAcroFormSignatureField objects:

Remarks

To create a signature field, call the PdfAcroFormField.CreateSignature method with the specified the field name, page number and field rectangle.

Use members of the PdfAcroFormSignatureField class to specify the signature field properties. For example, you can specify the signature field text using the PdfAcroFormSignatureField.Text property.

To specify the signature field name, tooltip and appearance, use the PdfAcroFormField.Name, PdfAcroFormField.ToolTip, PdfAcroFormVisualField.Appearance properties.

To add signature fields to a document, pass an array of PdfAcroFormSignatureField objects as a parameter to the PdfDocumentProcessor.AddFormFields method.

To delete a form field from a document using a field name, call the PdfDocumentProcessor.RemoveFormField method.

To delete all interactive elements from a document, call the PdfDocumentProcessor.RemoveForm method.

See Also