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.
Example
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;
Example
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;
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;
See Also