asposecells.api

Class ControlMatchEntryType

Utility class containing constants. Represents how a ListBox or ComboBox searches its list as the user types.

Field Summary
const  intFIRST_LETTER
The control searches for the next entry that starts with the character entered. Repeatedly typing the same letter cycles through all entries beginning with that letter.
const  intCOMPLETE
As each character is typed, the control searches for an entry matching all characters entered.
const  intNONE
The list will not be searched when characters are typed.
 

    • Field Detail

      • FIRST_LETTER

        const int FIRST_LETTER
        The control searches for the next entry that starts with the character entered. Repeatedly typing the same letter cycles through all entries beginning with that letter.
      • COMPLETE

        const int COMPLETE
        As each character is typed, the control searches for an entry matching all characters entered.
      • NONE

        const int NONE
        The list will not be searched when characters are typed.