This documentation is for the old version. Go to the latest Upload Suite docs

ImageFormat.UrlHover Property

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)

Syntax

Visual Basic
Public Property UrlHover As String
C#
public string UrlHover { get; set; }

Property Value

A string value that specifies the 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.

Default value is ""

Remarks

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

See Also

Reference