Message-ID: <1688560511.10339.1711722159619.JavaMail.web05$@web05> Subject: Exported From Confluence MIME-Version: 1.0 Content-Type: multipart/related; boundary="----=_Part_10338_728024210.1711722159619" ------=_Part_10338_728024210.1711722159619 Content-Type: text/html; charset=UTF-8 Content-Transfer-Encoding: quoted-printable Content-Location: file:///C:/exported.html Hyperlink.Text

Hyperlink.Text

Description

Sets or returns the hyperlink's displayed text.=20
C#
=20
public System.String Text{ get; set; }
=20
=20
vb.net
=20
Public Property Text() As String
=20
=20

Remarks

By default the display text = is the same as the hyperlink. Setting this property will not change the loc= ation that is linked to, but will change the text that is displayed.=20

Examples

=20
C#
=20
          //--- Get Text
          string linkText =3D link.Text;

          //--- Set Text
          link.Text =3D "SoftArtisans";
        
=20
vb.net
=20
          '--- Get Text
          Dim linkText As String =3D link.Text

          '--- Set Text
          link.Text =3D "SoftArtisans"
        
=20
------=_Part_10338_728024210.1711722159619--