ComponentOne List for WinForms
C1.Win.List Namespace / MatchEntryEnum Enumeration

In This Topic
    MatchEntryEnum Enumeration
    In This Topic
    Determines how a C1List control performs searches based on user input.
    Syntax
    'Declaration
     
    
    Public Enum MatchEntryEnum 
       Inherits System.Enum
    public enum MatchEntryEnum : System.Enum 
    Members
    MemberDescription
    ExtendedThe control searches for an entry matching all characters entered. The search is performed incrementally as characters are typed. The search argument is cleared when the user presses Backspace or hesitates for a few seconds.
    NoneThe default. The control does not perform any incremental searches.
    StandardThe search argument is limited to one character, and the control attempts to find a match for the character entered using the first letter of entries in the list. Repeatedly typing the same letter cycles through all of the entries in the list beginning with that letter.
    Inheritance Hierarchy

    System.Object
       System.ValueType
          System.Enum
             C1.Win.List.MatchEntryEnum

    See Also