Page tree

Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

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#
<table class="diff-macro"><thead><tr><th class="diff-macro-title">unmigrated-wiki-markup</th></tr></thead><tbody><tr><td class="diff-macro-body"><pre>
 public Area Area{ get; }
</pre></td></tr></tbody></table>
Signature
vb.net
vb.net
Public <p>Public ReadOnly Property Area() As Area</p>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.

Example
Code Block
csharp
csharp
titleC#

Area linkArea = link.Area;
Code Block
vb.net
vb.net
titlevb.net

Dim linkArea As Area = link.Area