Example





In This Topic
GdPicture14 Namespace / GdPictureOCR Class / LoadFreqWordsDictionary Property

LoadFreqWordsDictionary Property (GdPictureOCR)

In This Topic
Defines, whether the engine should load the frequent words of the dictionaries for all added languages.
Syntax
'Declaration
 
Public Property LoadFreqWordsDictionary As Boolean
public bool LoadFreqWordsDictionary {get; set;}
public read-write property LoadFreqWordsDictionary: Boolean; 
public function get,set LoadFreqWordsDictionary : boolean
public: __property bool get_LoadFreqWordsDictionary();
public: __property void set_LoadFreqWordsDictionary( 
   bool value
);
public:
property bool LoadFreqWordsDictionary {
   bool get();
   void set (    bool value);
}

Property Value

The default value is true.
Example
How to disable the frequent words dictionary.
Using gdpictureOCR As GdPictureOCR = New GdPictureOCR()
 
    gdpictureOCR.LoadFreqWordsDictionary = False
 
    'You can do your another stuff with gdpictureOCR here.
End Using
using (GdPictureOCR gdpictureOCR = new GdPictureOCR())
{
    gdpictureOCR.LoadFreqWordsDictionary = false;
 
    //You can do your another stuff with gdpictureOCR here.
}
See Also