Skip to content

DevExpress-Examples/reporting-winforms-export-pdf-digital-signature

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

61 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

WinForms Reports - Apply a Digital Signature When Exporting a Report to PDF

This example creates a report and applies a digital signature when the report is exported to PDF. The XtraReport.ExportOptions.Pdf.SignatureOptions property is used to access and configure digital signature options.

// Specify PDF signature options.
report.ExportOptions.Pdf.SignatureOptions.Reason = "Approved";
report.ExportOptions.Pdf.SignatureOptions.Location = "USA";
// svgImageCollection stores SVG images.
// In this example, it was created and populated at design time.
report.ExportOptions.Pdf.SignatureOptions.ImageSource = new ImageSource(svgImageCollection1["approved"]);
report.ExportOptions.Pdf.SignatureOptions.Certificate = certificate;

The example uses the X509Store class as a local storage for digital certificates.

Files to Review

Documentation

More Examples

Does This Example Address Your Development Requirements/Objectives?

(you will be redirected to DevExpress.com to submit your response)

About

Applies a digital signature when a report is exported to PDF.

Topics

Resources

License

Stars

Watchers

Forks

Contributors