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

ImageFormat.UrlNormalFocused Property

The same as UrlNormal, but used when the button is in focus. If omitted, last drawn image will be used.

Namespace: Aurigma.ImageUploader
Assembly: Aurigma.ImageUploader (in Aurigma.ImageUploader.dll)

Syntax

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

Property Value

A string value that specifies the URL to the image which represents the button/icon when it is not pressed, mouse pointer is not hover over it, and the button/icon is in focus.

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