{description}
{excerpt}Sets or returns the hyperlink's displayed text.{excerpt}
{signature:C#}
 public System.String Text{ get; set; }
{signature}{signature:vb.net}
Public Property Text() As String
{signature}
{remarks}
By default the display text is the same as the hyperlink. Setting this property will not change the location that is linked to, but will change the text that is displayed.
{remarks}
{example}{code:csharp|title=C#}

          //--- Get Text
          string linkText = link.Text;

          //--- Set Text
          link.Text = "SoftArtisans";
        {code}
{code:vb.net|title=vb.net}

          '--- Get Text
          Dim linkText As String = link.Text

          '--- Set Text
          link.Text = "SoftArtisans"
        {code}

{example}