Back to Devexpress

PdfSignatureAppearance Class

officefileapi-devexpress-dot-pdf-7f1f4067.md

latest4.4 KB
Original Source

PdfSignatureAppearance Class

Contains signature appearance options.

Namespace : DevExpress.Pdf

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

NuGet Package : DevExpress.Pdf.Core

Declaration

csharp
public class PdfSignatureAppearance
vb
Public Class PdfSignatureAppearance

Remarks

The PdfSignatureAppearance class properties allow you to customize the signature appearance that consists of two components:

  • Signature – a graphic that identifies the signer on the left side of the signature (a photo, scanned signatures and so on).

  • Signature details – data that appears to the right of the signature.

Call the SetImageData method to specify an image displayed on the left side of the signature. If no image is specified, the signer name is displayed. The name is extracted from the signing certificate or the PdfSignatureBuilder.Name property. Set the AppearanceType property to None to display only signature details.

Call the PdfSignatureBuilder.SetSignatureAppearance() method and pass the PdfSignatureAppearance object as a parameter to apply changes to the signature. The SetSignatureAppearance method call discards an image set by the PdfSignatureBuilder.SetImageData() method.

Example

The code sample below customizes the signature appearance:

csharp
// Apply a signature to an existing form field
var santuzzaSignature = new PdfSignatureBuilder(pkcs7Signature, "Sign");

// Specify an image and signer information
santuzzaSignature.Location = "Australia";
santuzzaSignature.Name = "Santuzza Valentina";
santuzzaSignature.Reason = "I Agree";

// Specify signature appearance parameters:
PdfSignatureAppearance signatureAppearance = new PdfSignatureAppearance();

// Add a signature image:
signatureAppearance.SetImageData("Signing Documents/logo.png");

// Specify what information to display:
signatureAppearance.ShowDate = true;
signatureAppearance.ShowLocation = true;

// Set display format for date and time:
signatureAppearance.DateTimeFormat = "MM/dd/yyyy";

// Change font settings for signature details:
signatureAppearance.SignatureDetailsFont.Size = 12;
signatureAppearance.SignatureDetailsFont.Italic = true;

// Apply changes:
santuzzaSignature.SetSignatureAppearance(signatureAppearance);
vb
' Apply a signature to an existing form field
Dim santuzzaSignature = New PdfSignatureBuilder(pkcs7Signature, "Sign")

' Specify an image and signer information
santuzzaSignature.Location = "Australia"
santuzzaSignature.Name = "Santuzza Valentina"
santuzzaSignature.Reason = "I Agree"

' Specify signature appearance parameters:
Dim signatureAppearance As New PdfSignatureAppearance()

' Add a signature image:
signatureAppearance.SetImageData("Signing Documents/logo.png")

' Specify what information to display:
signatureAppearance.ShowDate = True
signatureAppearance.ShowLocation = True

' Set display format for date and time:
signatureAppearance.DateTimeFormat = "MM/dd/yyyy"

' Change font settings for signature details:
signatureAppearance.SignatureDetailsFont.Size = 12
signatureAppearance.SignatureDetailsFont.Italic = True

' Apply changes:
santuzzaSignature.SetSignatureAppearance(signatureAppearance)

Inheritance

Object PdfSignatureAppearance

See Also

PdfSignatureAppearance Members

DevExpress.Pdf Namespace