Page tree

Versions Compared

Key

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

Excerpt

Returns the Area that the Hyperlink object is associated with. The set of cells that the Area object represents functions as a single hyperlink to the same href.

Signature
C#C#
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}{signature:vb.net
vb.net
}
Public ReadOnly Property Area() As Area
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.

{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}
Example
Code Block
csharpcsharp
titleC#
Code Block
vb.nettitle