Skip to main content

PopOutImageProperties.UrlSelected Property

Gets or sets the URL of the image used for an element’s selected state.

Namespace: DevExpress.Web.ASPxHtmlEditor

Assembly: DevExpress.Web.ASPxHtmlEditor.v23.2.dll

NuGet Package: DevExpress.Web

Declaration

public string UrlSelected { get; set; }

Property Value

Type Description
String

A String value that specifies the location of an image.

Remarks

Use the UrlSelected property to specify the URL of an image which is defined by the current PopOutImageProperties object, and is used to represent the corresponding element in a selected state.

You can use a relative or an absolute URL. A relative URL relates the location of the image to the location of the Web page without specifying a complete path on the server. The path is relative to the location of the Web page. This makes it easier to move the entire site to another directory on the server, without updating the code. An absolute URL provides the complete path, so moving the site to another directory requires a code update.

An image’s size can be defined via the ImagePropertiesBase.Width and ImagePropertiesBase.Height properties. Note that in order to correctly display a PNG file with alpha channel at runtime, the image’s size (the ImagePropertiesBase.Width and ImagePropertiesBase.Height properties) should be specified explicitly.

See Also