EnableEnableFuzzySearch Property
In This Topic
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.
Syntax
'Declaration
Public Property EnableEnableFuzzySearch As Boolean
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);
}
Property Value
The default value is false.
Example
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;
See Also