New to Telerik Document ProcessingStart a free 30-day trial

Signature capture field used to embed or validate a digital signature within the PDF (supports cryptographic integrity checks).

Definition

Constructors

Create a signature field with the specified fieldName.

C#
public SignatureField(string fieldName)
Parameters:fieldNamestring

The field name.

Properties

Gets the form field type identifier (Signature) used during export and processing.

C#
public override sealed FormFieldType FieldType { get; }

Overrides: FormField.FieldType

Gets or sets the applied digital signature object; assigning sets its FieldName and enforces single ownership.

C#
public Signature Signature { get; set; }
Property Value:

The signature object containing cryptographic information and validation data, or null if the field is not yet signed.

Exceptions:

ArgumentException

Thrown when attempting to assign a signature that is already associated with another signature field.