KaxToolBarItemClickedImageUrl Property |
Gets or sets the path to an image to display for the item when the user clicks it.
Namespace: Kettic.AspNet.ControlsAssembly: Kettic.AspNet.Controls (in Kettic.AspNet.Controls.dll) Version: 2014.4.1129.0 (2014.04.1129.0)
Syntaxpublic string ClickedImageUrl { get; set; }
Public Property ClickedImageUrl As String
Get
Set
public:
virtual property String^ ClickedImageUrl {
String^ get () sealed;
void set (String^ value) sealed;
}
abstract ClickedImageUrl : string with get, set
override ClickedImageUrl : string with get, set
Property Value
Type:
String
The path to the image to display when the user clicks the item. The default value
is empty string.
Remarks
Use the ClickedImageUrl property to specify the image that will be
used when the user clicks the item. If the ClickedImageUrl
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:KaxToolBarDropDown ImageUrl="~/Img/inbox.gif"
ClickedImageUrl="~/Img/inboxClicked.gif" Text="DropDown1" >
<Items>
<kettic:KaxToolBarButton Text="Mail1" ClickedImageUrl="~/Img/mail1Clicked.gif"
/>
</Items>
</kettic:KaxToolBarDropDown>/
</Items>
</kettic:KaxToolBar>
See Also