The same as UrlHover, but used when the button/icon is in focus. If omitted, last drawn image will be used.
Namespace:
Aurigma.ImageUploader
Assembly:
Aurigma.ImageUploader (in Aurigma.ImageUploader.dll)
Public Property UrlHoverFocused As String
public string UrlHoverFocused { get; set; }
A string value that specifies the URL to the image which represents a button/icon when a mouse button is hovered over it and the button/icon is in focus. If omitted, last drawn image will be used.
Default value is ""
Image URLs can be both absolute (e.g. http://domain.com/images/button1.gif
) and relative to the current page (e.g. ../images/button1.gif
).
For example, if Image Uploader is inserted to the http://domain.com/ImageUploader/default.aspx
page, the relative URLs specified via this property will correspond to the following locations.
Specified URL | Expected Location |
---|---|
"/images/button1.gif"
|
http://domain.com/images/button1.gif
|
"./images/button1.gif"
|
http://domain.com/ImageUploader/images/button1.gif
|
"images/button1.gif"
|
http://domain.com/ImageUploader/images/button1.gif
|
"button1.gif"
|
http://domain.com/ImageUploader/button1.gif
|