Error processing SSI file
LEADTOOLS Image File Support (Leadtools.Codecs assembly)

Show in webframe

HideDigitalSignatures Property








Gets or sets a value that indicates whether to hide the digital signature objects when loading a PDF page as a raster image or an SVG.
Syntax
public bool HideDigitalSignatures {get; set;}
'Declaration
 
Public Property HideDigitalSignatures As Boolean
'Usage
 
Dim instance As CodecsPdfLoadOptions
Dim value As Boolean
 
instance.HideDigitalSignatures = value
 
value = instance.HideDigitalSignatures
public bool HideDigitalSignatures {get; set;}
public boolean getHideDigitalSignatures()
public void setHideDigitalSignatures(boolean value)
            
 <br/>get_HideDigitalSignatures();<br/>set_HideDigitalSignatures(value);<br/>Object.defineProperty('HideDigitalSignatures'); 
public:
property bool HideDigitalSignatures {
   bool get();
   void set (    bool value);
}

Property Value

true to hide the digital signature objects, otherwise; false. The default value is true.
Remarks

HideAnnotations, HideFormFields and HideDigitalSignatures control showing/hiding the annotations/form fields/digital signature respectively when loading a PDF as a raster image or an SVG.

The default value of these properties is true. Therefore, if you load a page containing any of these objects as a raster image or an SVG (using Load or LoadSvg), the objects will be rendered and are considered part of the page. This default behavior ensures that viewing applications will display the PDF page exactly as is.

For more document-oriented viewing applications, it may be desirable to hide these objects when loading the page. For example, an annotations-capable application can set HideAnnotations to true and then use other parts of LEADTOOLS to load the annotations and overlay them on the page for editing. Otherwise, when the user moves an object in the application, the page will show the pre-rendered version underneath.

Similarly, a PDF forms application can hide the forms by setting HideFormFields to true and then load the form fields and overlay them using other parts of LEADTOOLS.

For an example, refer to the source code the Document Viewer, Annotations, PDF Document, PDF Forms or PDF Digital Signature demos in your LEADTOOLS installation.

Requirements

Target Platforms

See Also

Reference

CodecsPdfLoadOptions Class
CodecsPdfLoadOptions Members

Error processing SSI file