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}Returns the [Area|Area] that the [Hyperlink|Hyperlink] object is associated with. The set of cells that the {{Area}} object represents functions as a single hyperlink to the same href.{excerpt}
{signature:C#}
 public Area Area{ get; }
{signature}{signature:vb.net}
Public ReadOnly Property Area() As Area
{signature}
{remarks}
If the user clicks anywhere within this Area, they will be taken to the hyperlink's destination.

If the hyperlink has been deleted, this property returns null.
{remarks}
{example}{code:csharp|title=C#}
Area linkArea = link.Area;{code}
{code:vb.net|title=vb.net}
Dim linkArea As Area = link.Area{code}

{example}