Spread Windows Forms 12.0 Product Documentation
AutoSearch Property (FpCombo)


FarPoint.Win Assembly > FarPoint.Win Namespace > FpCombo Class : AutoSearch Property
Gets or sets how a list of items in a combo box is searched based on input of a character key.
Syntax
'Declaration
 
Public Property AutoSearch As AutoSearch
'Usage
 
Dim instance As FpCombo
Dim value As AutoSearch
 
instance.AutoSearch = value
 
value = instance.AutoSearch
public AutoSearch AutoSearch {get; set;}

Property Value

AutoSearch setting that determines how the list items are searched
Remarks

This property allows the user to type one or more characters to search for an item in the list of a non-editable combo box.

When set, the control automatically searches through the items in the drop-down list for an item that matches the user input based on the setting for the search. For example, if you set it to single character, it finds the item based on the first character the user types. When it finds a matching item, it places that value in the cell. Refer to the FarPoint.Win.AutoSearch enumerations for more details on the possible settings for this property.

Typing a character initiates a search for the first item that begins with that character. If the item found is not visible in the list, the control scrolls to the first item that matches that character or characters. The control highlights the found item. If the search character is not found and the setting is SingleCharacter, no item is highlighted. If the setting is MultipleCharacter, the selection highlighting moves to the closest available match for the search string as the characters are entered (for example, to highlight "Variegated" type "var"). If none of the items begin with the first character entered, the control does not move the selection. If the setting is SingleGreaterThan, the control highlights the next greater item if the search character is not found. For example, the first item starting with the letter "g" will be highlighted if the user searched for the letter "f" and none of the items begin with that letter.

For example, assume the control displays five rows and this property is set to MultipleCharacter. List item "Willow Springs" is in row 10 and "Wilmington" is in row 20. When you type the letter "w", the list scrolls to "Willow Springs". When you type the letters "i" and then "l", nothing changes. If the fourth letter you type is "m", the list will scroll to "Wilmington". If the fourth letter you type is "z" (no match is found), the list scrolls so that the first row is the top row in the list.

See Also

Reference

FpCombo Class
FpCombo Members
AutoSearch Enumeration