Example





In This Topic
GdPicture14 Namespace / GdViewer Class / PdfDisplayFormField Property

PdfDisplayFormField Property (GdViewer)

In This Topic
Specifies whether the GdViewer control will render and print form fields and annotations included in the loaded PDF documents.
Syntax
'Declaration
 
Public Property PdfDisplayFormField As Boolean
public bool PdfDisplayFormField {get; set;}
public read-write property PdfDisplayFormField: Boolean; 
public function get,set PdfDisplayFormField : boolean
public: __property bool get_PdfDisplayFormField();
public: __property void set_PdfDisplayFormField( 
   bool value
);
public:
property bool PdfDisplayFormField {
   bool get();
   void set (    bool value);
}

Property Value

The default value is true.
Remarks
This property is only meaningful for PDF documents. At the same, this property is also taken into account when printing the loaded PDF documents.
Example
How to disable displaying and printing form fields and annotations in loaded PDF documents. How to disable displaying and printing form fields and annotations in loaded PDF documents.
'We assume that the GdViewer1 control has been properly integrated.
GdViewer1.PdfDisplayFormField = False
//We assume that the GdViewer1 control has been properly integrated.
GdViewer1.PdfDisplayFormField = false;
'We assume that the GdViewer1 control has been properly integrated.
GdViewer1.PdfDisplayFormField = False
//We assume that the GdViewer1 control has been properly integrated.
GdViewer1.PdfDisplayFormField = false;
See Also