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






Returns or sets the minimum length of input character for requesting data retrieval. Returns or sets the minimum length of input character for requesting data retrieval.

Syntax

Visual Basic (Declaration) 
<DescriptionAttribute("Returns or sets the minimum length of input character for requesting data retrieval.")>
<CategoryAttribute("Behavior")>
<ISNet.Serialization.BinarySerializableAttribute()>
<ISNet.Serialization.XmlSerializableAttribute()>
<DefaultValueAttribute()>
<NotifyParentPropertyAttribute(True)>
Public Property MinCharsToRequest As Integer
Visual Basic (Usage)Copy Code
Dim instance As WebCombo
Dim value As Integer
 
instance.MinCharsToRequest = value
 
value = instance.MinCharsToRequest
C# 
[DescriptionAttribute("Returns or sets the minimum length of input character for requesting data retrieval.")]
[CategoryAttribute("Behavior")]
[ISNet.Serialization.BinarySerializableAttribute()]
[ISNet.Serialization.XmlSerializableAttribute()]
[DefaultValueAttribute()]
[NotifyParentPropertyAttribute(true)]
public int MinCharsToRequest {get; set;}
Delphi 
public read-write property MinCharsToRequest: Integer; 
JScript 
DescriptionAttribute("Returns or sets the minimum length of input character for requesting data retrieval.")
CategoryAttribute("Behavior")
ISNet.Serialization.BinarySerializableAttribute()
ISNet.Serialization.XmlSerializableAttribute()
DefaultValueAttribute()
NotifyParentPropertyAttribute()
public function get,set MinCharsToRequest : int
Managed Extensions for C++ 
[DescriptionAttribute("Returns or sets the minimum length of input character for requesting data retrieval.")]
[CategoryAttribute("Behavior")]
[ISNet.Serialization.BinarySerializableAttribute()]
[ISNet.Serialization.XmlSerializableAttribute()]
[DefaultValueAttribute()]
[NotifyParentPropertyAttribute(true)]
public: __property int get_MinCharsToRequest();
public: __property void set_MinCharsToRequest( 
   int value
);
C++/CLI 
[DescriptionAttribute("Returns or sets the minimum length of input character for requesting data retrieval.")]
[CategoryAttribute("Behavior")]
[ISNet.Serialization.BinarySerializableAttribute()]
[ISNet.Serialization.XmlSerializableAttribute()]
[DefaultValueAttribute()]
[NotifyParentPropertyAttribute(true)]
public:
property int MinCharsToRequest {
   int get();
   void set (    int value);
}

Remarks

Use this property when data retrieval is only need to be performed with a minimal length assigned in this property.

For example, setting this property to 5 will tell WebCombo to retrieve data only when user typing in at least 5 character. Otherwise, WebCombo will not display the drop down list automatically. When the drop down arrow is clicked, it will display the drop down list but with no data retrieving. In this context, the status of the WebCombo will remain "Ready".

Use this property when data retrieval is only need to be performed with a minimal length assigned in this property.

For example, setting this property to 5 will tell WebCombo to retrieve data only when user typing in at least 5 characters. Otherwise, WebCombo will not display the drop down list automatically. When the drop down arrow is clicked, it will display the drop down list but with no data retrieving. In this context, the status of the WebCombo will remain "Ready".

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

© 2012 Intersoft Solutions Corp. All Rights Reserved.