Example





In This Topic
GdPicture14 Namespace / GdViewer Class / HQAnnotationRendering Property

HQAnnotationRendering Property (GdViewer)

In This Topic
Specifies if annotations are rendered in high quality mode.
Syntax
'Declaration
 
Public Property HQAnnotationRendering As Boolean
public bool HQAnnotationRendering {get; set;}
public read-write property HQAnnotationRendering: Boolean; 
public function get,set HQAnnotationRendering : boolean
public: __property bool get_HQAnnotationRendering();
public: __property void set_HQAnnotationRendering( 
   bool value
);
public:
property bool HQAnnotationRendering {
   bool get();
   void set (    bool value);
}

Property Value

The default value is true.
Example
How to disable the high quality annotation rendering.
'We assume that the GdViewer1 control has been properly integrated.
GdViewer1.HQAnnotationRendering = False
//We assume that the GdViewer1 control has been properly integrated.
GdViewer1.HQAnnotationRendering = false;
See Also