Table of Contents
AutoSelectTarget Property

Specifies options on how to highlight a navigation item which points to currently browsing page.

Syntax
 public NavigatorAutoSelectTarget AutoSelectTarget { get; set; }
Remarks

To determine if an item points to currently browsing page, EO.Web control uses the item's NavigateUrl to match current page's URL (see AutoSelectSource on matching rules), if the URLs are matched, EO.Web control highlights this item by setting it's Selected property to true.

EO.Web navigation controls allows you to specify the following options:

Options Description
Item Highlight(Selected property set to true) this item only.
Path Highlight(Selected property set to true) all items on path.

TipSelectedStyle will be used when an item's Selected property is set to true. In order for the item that points to current page to be highlighted, you also need to specify SelectedStyle property for the item's look.

See Also