Page tree

Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.
Comment: Migration of unmigrated content due to installation of a new plugin
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:vb.net}
Public Property Href() As String
{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}