Skip to main content

DevExpress v24.2 Update — Your Feedback Matters

Our What's New in v24.2 webpage includes product-specific surveys. Your response to our survey questions will help us measure product satisfaction for features released in this major update and help us refine our plans for our next major release.

Take the survey Not interested

PdfAcroFormSignatureField Class

Represents a signature field.

Namespace: DevExpress.Pdf

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

NuGet Package: DevExpress.Pdf.Core

#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