Example





In This Topic
GdPicture14 Namespace / GdViewer Class / PdfVerifyDigitalCertificates Property

PdfVerifyDigitalCertificates Property (GdViewer)

In This Topic
Specifies if the GdViewer control is responsible to check digital certificate when rendering a PDF document containing a digital signature. Depending on the outcome of the certificate audit, the visible appearance associated with each digital signature contained in the displayed document is adjusted.
Syntax
'Declaration
 
Public Property PdfVerifyDigitalCertificates As Boolean
public bool PdfVerifyDigitalCertificates {get; set;}
public read-write property PdfVerifyDigitalCertificates: Boolean; 
public function get,set PdfVerifyDigitalCertificates : boolean
public: __property bool get_PdfVerifyDigitalCertificates();
public: __property void set_PdfVerifyDigitalCertificates( 
   bool value
);
public:
property bool PdfVerifyDigitalCertificates {
   bool get();
   void set (    bool value);
}

Property Value

The default value is false.
Remarks
This property is only meaningful for digitally signed PDF documents.
Example
How to enable checking digital certificates when displaying digitally signed PDF documents.
'We assume that the GdViewer1 control has been properly integrated.
GdViewer1.PdfVerifyDigitalCertificates = True
//We assume that the GdViewer1 control has been properly integrated.
GdViewer1.PdfVerifyDigitalCertificates = true;
See Also