Defines the flags to control SearchItems behaviors.
This enumeration has a
FlagsAttribute
attribute that allows a bitwise combination of its member values.
[Visual Basic]
Public Enum NavigationItemSearchOptions
[C#]
public enum NavigationItemSearchOptions
Remarks
This enumeration has a FlagsAttribute that allows a bitwise combination of its member values.
Note that SearchValue cannot be combined with SearchText.
Members
| Member Name | Description | Value |
| None | Search the navigation item by ItemID property. | 0 |
| IgnoreCase | Ignore the case when searching the navigation item. | 1 |
| SearchValue | Search the navigation item by Value property. | 2 |
| SearchText | Search the navigation item by Text.Html property. | 4 |
| ExactMatch | Specifies whether search by exact match. For example, by default "abc" would match "abcd", but not if ExactMatch is set. | 8 |
Requirements
Namespace: EO.Web
Assembly: EO.Web (in EO.Web.dll)
See Also
EO.Web Namespace | SearchItems