Page tree

Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.
Comment: Migrated to Confluence 4.0
Description

Excerpt

Sets or returns the URL that the hyperlink links to.

{signature}
{example}{code:csharp|title=C#}

          //--- Get Href
          string linkHref = link.Href;

          //--- Set Href
          link.Href = "http://www.softartisans.com";
        
{code}
{code:vb.net
|title=vb.net
}

          '--- Get Href
          Dim linkHref As String = link.Href

          link.Href = "http://www.softartisans.com"
        {code}

{example}
Signature
C#C#
Wiki Markup
{description}
{excerpt}Sets or returns the URL that the hyperlink links to.{excerpt}
{signature:C#}
 public System.String Href{ get; set; }
Signature
{signature}{signature:vb.net
vb.net
}
Public Property Href() As String
Example
Code Block
csharpcsharp
titleC#
Code Block
vb.nettitle