Gets or sets the image URL when an item's "Selected" property is true.
[Visual Basic]
Public Property SelectedUrl As
String
[C#]
public
String SelectedUrl {get; set;}
Property Value
System.String
The string specifies the image's Url.
This property is read/write.
Remarks
Use SelectedUrl property to specify the image when an item is in selected state.
Each item has several different states, such as "Hover", "Disabled", "Selected", etc. You can specify different Urls for different states. For example, you can use Url to specify an image for "Normal" state, and use HoverUrl to specify a different image for "Hover" state.
Tip:
You do not need to provide all of the above URLs unless you do want the item to display different images in different states. Usually you just need to provide Url property and it will be used for all states. For more information about states and how navigation control switches appearance between different states, see item states.
If the value of this property is a relative path, ImageBaseDirectory property could be used as base path, then the final result will be ImageBaseDirectory and this property combined together. Note, you can use "~/" to specify a root relative path in all EO.Web URL properties. Once the value starts with "~/", ImageBaseDirectory will not be used.
See Also
NavigationItemImages Class | EO.Web Namespace