Table of Contents
NavigatorAutoSelectSource Enumeration

Used by AutoSelectSource to control how a navigation control automatically selects navigation items.

Namespace: EO.Web
Assembly: EO.Web (in EO.Web.dll)

Syntax
 public enum NavigatorAutoSelectSource
Members
Member Name Description
None Do not automatically set navigation item's Selected property to true.
NavigateUrl When an item's NavigateUrl excluding the parameters part matches current page's URL, automatically selects the item.
NavigateUrlExact When an item's NavigateUrl including the parameters part matches current page's URL, automatically selects the item.
ItemClick When an item is clicked, automatically selects the item.
ItemClickAndNavigateUrl When an item is clicked, and the item's NavigateUrl excluding the parameters part matches current page's URL, automatically selects the item.
ItemClickAndNavigateUrlExact When an item is clicked, and the item's NavigateUrl including the parameters part matches current page's URL, automatically selects the item.
Auto The corresponding navigation control's default value is used.
See Also