SearchMode Enumeration
Enumeration constants to define binary searching of lists
Syntax
public enum SearchMode : System.Enum 
Members
MemberDescription
Exact Specifies exact search. If the index is not found, -1 is returned.
Nearest Specifies the nearest index. This will round up or down if the search is in-between x-values
RoundDown Rounds down to the nearest index.
RoundUp Rounds up to the nearest index
Inheritance Hierarchy

System.Object
   System.ValueType
      System.Enum
         SciChart.Charting.Common.Extensions.SearchMode

Requirements

Target Platforms: 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