Spread Windows Forms 13.0 Product Documentation
FarPoint.Win.Spread Assembly / FarPoint.Win.Spread.CellType Namespace / MultiColumnComboBoxCellType Class / AutoSearch Property
Example


In This Topic
    AutoSearch Property (MultiColumnComboBoxCellType)
    In This Topic
    Gets or sets how the list is searched based on input of a character key.
    Syntax
    'Declaration
     
    Public Property AutoSearch As AutoSearch
    'Usage
     
    Dim instance As MultiColumnComboBoxCellType
    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 enumeration 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.

    Example
    This example specifies how the list items in a multiple column combo box are searched and selected based on character key input.
    FarPoint.Win.Spread.CellType.MultiColumnComboBoxCellType mc = new FarPoint.Win.Spread.CellType.MultiColumnComboBoxCellType();
    mc.AutoSearch = FarPoint.Win.AutoSearch.SingleCharacter;
    FarPoint.Win.Spread.CellType.MultiColumnComboBoxCellType mc = new FarPoint.Win.Spread.CellType.MultiColumnComboBoxCellType();
    mc.AutoSearch = FarPoint.Win.AutoSearch.SingleCharacter;
    See Also