ASPxHyperLink.ImageUrl Property
Gets or sets the path to the image displayed within the editor.
Namespace: DevExpress.Web
Assembly: DevExpress.Web.v24.1.dll
NuGet Package: DevExpress.Web
Declaration
Property Value
Type | Default | Description |
---|---|---|
String | String.Empty | A String value which specifies the URL that represents the path to the image displayed within the editor. |
Remarks
This property is a wrapper of the HyperLinkProperties.ImageUrl property.
Example
This example demonstrates how to customize the ASPxHyperLink control.
<dx:ASPxHyperLink ID="ASPxHyperLink1" runat="server" Text="DevExpress" NavigateUrl="http://devexpress.com/"
ImageUrl="~/imgs/logo.png">
</dx:ASPxHyperLink>
See Also