Intersoft WebCombo Documentation
AllowWildCardSearch Property
See Also  Send Feedback
ISNet.WebUI.WebCombo Namespace > WebCombo Class : AllowWildCardSearch Property






Specifies whether or not to allow wild card searching / fuzzy logic searching. Specifies whether or not to allow wild card searching / fuzzy logic searching.

Syntax

Visual Basic (Declaration) 
<DescriptionAttribute("Specifies whether or not to allow wild card searching / fuzzy logic searching.")>
<ISNet.Serialization.XmlSerializableAttribute()>
<DefaultValueAttribute()>
<ISNet.Serialization.BinarySerializableAttribute()>
<NotifyParentPropertyAttribute(True)>
<CategoryAttribute("Behavior")>
Public Property AllowWildCardSearch As Boolean
Visual Basic (Usage)Copy Code
Dim instance As WebCombo
Dim value As Boolean
 
instance.AllowWildCardSearch = value
 
value = instance.AllowWildCardSearch
C# 
[DescriptionAttribute("Specifies whether or not to allow wild card searching / fuzzy logic searching.")]
[ISNet.Serialization.XmlSerializableAttribute()]
[DefaultValueAttribute()]
[ISNet.Serialization.BinarySerializableAttribute()]
[NotifyParentPropertyAttribute(true)]
[CategoryAttribute("Behavior")]
public bool AllowWildCardSearch {get; set;}
Delphi 
public read-write property AllowWildCardSearch: Boolean; 
JScript 
DescriptionAttribute("Specifies whether or not to allow wild card searching / fuzzy logic searching.")
ISNet.Serialization.XmlSerializableAttribute()
DefaultValueAttribute()
ISNet.Serialization.BinarySerializableAttribute()
NotifyParentPropertyAttribute()
CategoryAttribute("Behavior")
public function get,set AllowWildCardSearch : boolean
Managed Extensions for C++ 
[DescriptionAttribute("Specifies whether or not to allow wild card searching / fuzzy logic searching.")]
[ISNet.Serialization.XmlSerializableAttribute()]
[DefaultValueAttribute()]
[ISNet.Serialization.BinarySerializableAttribute()]
[NotifyParentPropertyAttribute(true)]
[CategoryAttribute("Behavior")]
public: __property bool get_AllowWildCardSearch();
public: __property void set_AllowWildCardSearch( 
   bool value
);
C++/CLI 
[DescriptionAttribute("Specifies whether or not to allow wild card searching / fuzzy logic searching.")]
[ISNet.Serialization.XmlSerializableAttribute()]
[DefaultValueAttribute()]
[ISNet.Serialization.BinarySerializableAttribute()]
[NotifyParentPropertyAttribute(true)]
[CategoryAttribute("Behavior")]
public:
property bool AllowWildCardSearch {
   bool get();
   void set (    bool value);
}

Remarks

By setting this property to True, users will be able to perform fuzzy logic searching without has to add * in the front of input text.

By default, this feature will allow WebCombo to search its data list from the first character based on the user's input. For example : if user inputs "a" in the search field, WebCombo will search for data that begins with the character "a". For more information, please read Allow Wildcard Search.

By setting this property to True, users will be able to perform fuzzy logic searching without has to add * in the front of input text.

Requirements

Target Platforms: Windows 98, Windows NT 4.0, Windows Millennium Edition, Windows 2000, Windows XP Home Edition, Windows XP Professional, Windows Server 2003 family, Windows Vista, Windows Server 2008 family

See Also

Reference

WebCombo Class
WebCombo Members

Tasks

How-to: Enable wildcard search

Concepts

Allow Wildcard Search

© 2012 Intersoft Solutions Corp. All Rights Reserved.