Version

DropDownSearchMethod Enumeration

Indicates the method used to search an UltraDropDown or UltraCombo Control when searching for a DisplayText or DataValue.
Syntax
'Declaration
 
Public Enum DropDownSearchMethod 
   Inherits System.Enum
public enum DropDownSearchMethod : System.Enum 
Members
MemberDescription
BinaryUse a Binary search. Binary searches are faster than Linear searches, but require an initial performance hit to build and maintain a sorted list of data.
DefaultUse the default search method (Binary).
LinearUse a linear search. Linear searches are slower than binary, but there is less of an initial delay when loading the control with data.
Requirements

Target Platforms: Windows 10, Windows 8.1, Windows 8, Windows 7, Windows Server 2012, Windows 7, Windows Vista SP1 or later, Windows XP SP3, Windows Server 2008 (Server Core not supported), Windows Server 2008 R2 (Server Core supported with SP1 or later), Windows Server 2003 SP2

See Also