Gets or sets a URL to the image which represents a button/icon when a mouse button is hovered over it. If omitted, last drawn image will be used.
Namespace:
Aurigma.ImageUploader
Assembly:
Aurigma.ImageUploader (in Aurigma.ImageUploader.dll)
public string UrlHover { get; set; }
Type: System..String
The URL to the image which represents a button/icon when a mouse button is hovered over it.
Default value is "".
You can use images of all formats recognized by ActiveX/Java Uploader as images. If you load animated GIF files, only the first frame will be displayed.
Image URLs can be both absolute (e.g. http://domain.com/images/image.png
) and relative to the current page (e.g. /images/image.png
).
For example, if ActiveX/Java Uploader is inserted to the http://domain.com/ImageUploader/index.html
page, the relative URLs specified via this
property will correspond to the following locations.
Specified URL | Expected Location |
---|---|
"/images/image.png"
|
http://domain.com/images/image.png
|
"./images/image.png"
|
http://domain.com/ImageUploader/images/image.png
|
"images/image.png"
|
http://domain.com/ImageUploader/images/image.png
|
"image.png"
|
http://domain.com/ImageUploader/image.png
|