  | SearchOptions Enumeration | 
 
            Enumerates options for text search.
            
 
    Namespace: 
   Opait.Api
    Assembly:
   Opait.Core (in Opait.Core.dll) Version: 1.3.3.0
Syntax[FlagsAttribute]
public enum SearchOptions
Members| 
									 
								 | Member name | Value | Description | 
|---|
 | None | 0 | 
            No flags set.
             | 
 | MatchCase | 1 | 
            If set, will match character case.
             | 
 | MatchWholeWord | 2 | 
            If set, will match whole words only.
             | 
 | UseRegex | 4 | 
            If set, will interpret query as a regular expression pattern.
             | 
 | MatchDates | 8 | 
            Looks for embedded dates only.
             | 
 | WrapAround | 16 | 
            Wrap the search results when searching for the next or previous occurrence.
             | 
See Also