Skip to main content
A newer version of this page is available. .
.NET Framework 4.5.2+

PdfSignature(X509Certificate2, Stream, Int32, PdfRectangle) Constructor

Initializes a new instance of the PdfSignature class with the specified certificate, image data represented by a stream, page number and the signature bounds represented by a PdfRectangle object.

Namespace: DevExpress.Pdf

Assembly: DevExpress.Pdf.v19.1.Core.dll

Declaration

public PdfSignature(
    X509Certificate2 certificate,
    Stream imageData,
    int pageNumber,
    PdfRectangle signatureBounds
)

Parameters

Name Type Description
certificate X509Certificate2

A X509Certificate2 object that is an X.509 certificate.

imageData Stream

A System.IO.Stream class descendant, specifying the stream with the image data.

pageNumber Int32

An integer value that specifies the page number where the signature should be added.

signatureBounds PdfRectangle

A PdfRectangle object that represents the signature bounds in the default user space.

See Also