Skip to main content
Tab

ASPxHyperLink.Text Property

Gets or sets the text caption displayed for the hyperlink in the hyperlink editor.

Namespace: DevExpress.Web

Assembly: DevExpress.Web.v22.2.dll

NuGet Package: DevExpress.Web

Declaration

[DefaultValue("")]
public string Text { get; set; }

Property Value

Type Default Description
String String.Empty

A String value specifying the text caption for the hyperlink in the editor.

Remarks

This property is a wrapper of the HyperLinkProperties.Text 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