Click or drag to resize
KaxToolBarItemFocusedImageUrl Property
Gets or sets the path to an image to display when the user focuses the item either by tabbing to it or by using the AccessKey

Namespace: Kettic.AspNet.Controls
Assembly: Kettic.AspNet.Controls (in Kettic.AspNet.Controls.dll) Version: 2014.4.1129.0 (2014.04.1129.0)
Syntax
public virtual string FocusedImageUrl { get; set; }

Property Value

Type: String
The path to the image to display when the user user focuses the item either by tabbing to that it or by using the AccessKey. The default value is empty string.
Remarks
Use the FocusedImageUrl property to specify the image that will be used when the item gets the focus after tabbing or using its AccessKey. If the FocusedImageUrl 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:KaxToolBar id="KaxToolBar1" runat="server">
<Items>
<kettic:KaxToolBarButton ImageUrl="~/Img/bold.gif" FocusedImageUrl="~/Img/boldFocused.gif" Text="Bold" />
</Items>
</kettic:KaxToolBar>

See Also