EnableEnableFuzzySearch Property
Specifies if fuzzy match is activated during any text search operation.
When enabled, a text search operation searches for text that matches a term closely instead of exactly.
public bool EnableEnableFuzzySearch {get; set;}
public read-write property EnableEnableFuzzySearch: Boolean;
public function get,set EnableEnableFuzzySearch : boolean
public: __property bool get_EnableEnableFuzzySearch();
public: __property void set_EnableEnableFuzzySearch(
bool value
);
public:
property bool EnableEnableFuzzySearch {
bool get();
void set ( bool value);
}
'Declaration
Public Property EnableEnableFuzzySearch As Boolean
Property Value
The default value is false.
How to utilize this property in your GdViewer control.
'We assume that the GdViewer1 control has been properly integrated.
GdViewer1.EnableEnableFuzzySearch = True
//We assume that the GdViewer1 control has been properly integrated.
GdViewer1.EnableEnableFuzzySearch = true;