KaxMenuItemHoveredImageUrl Property |
Gets or sets the path to an image to display for the item when the user moves the
mouse over the item.
Namespace: Kettic.AspNet.ControlsAssembly: Kettic.AspNet.Controls (in Kettic.AspNet.Controls.dll) Version: 2014.4.1129.0 (2014.04.1129.0)
Syntax public override string HoveredImageUrl { get; set; }
Public Overrides Property HoveredImageUrl As String
Get
Set
public:
virtual property String^ HoveredImageUrl {
String^ get () override;
void set (String^ value) override;
}
abstract HoveredImageUrl : string with get, set
override HoveredImageUrl : string with get, set
Property Value
Type:
String
The path to the image to display when the user moves the mouse over the item. The
default value is empty string.
Remarks
Use the HoveredImageUrl property to specify the image that will be
used when the user moves the mouse over the item. If the HoveredImageUrl
property is set to empty string the image specified by the ImageUrl
property will be used. Use "~" (tilde) when referring to images within the current
ASP.NET application.
Examples <kettic:KaxMenu id="KaxMenu1" runat="server">
<Items>
<kettic:KaxMenuItem ImageUrl="~/Img/inbox.gif"
HoveredImageUrl="~/Img/inboxOver.gif" Text="Index" />
<kettic:KaxMenuItem ImageUrl="~/Img/outbox.gif"
HoveredImageUrl="~/Img/outboxOver.gif" Text="Outbox" />
</Items>
</kettic:KaxMenu>
See Also