> ## Documentation Index
> Fetch the complete documentation index at: https://docs.abbyy.com/llms.txt
> Use this file to discover all available pages before exploring further.

# Hyperlink Property of the Paragraph Object

This property returns a reference to the [Hyperlink](/fine-reader/engine/api-reference/text-related-objects/hyperlink) object which describes the hyperlink in the position. If there are no hyperlinks, this property is set to 0.

## Syntax

### C++

```cpp theme={null}
HRESULT get_Hyperlink(
   int          Position,
   IHyperlink** Result
);
```

### C\#

```csharp theme={null}
IHyperlink get_Hyperlink( int Position );
```

### Visual Basic .NET

```vb theme={null}
ReadOnly Property Hyperlink(Position As Integer) As IHyperlink
```

## Parameters

Position

\[in] This variable contains the index of a character inside the paragraph.

Result

\[out, retval] A pointer to IHyperlink\* pointer variable that receives the interface pointer of the [Hyperlink](/fine-reader/engine/api-reference/text-related-objects/hyperlink) output object. This object exposes properties of the hyperlink. If there is no hyperlink, this property is set to 0.

## Return values

This function has no specific return values. It returns the [standard return values of ABBYY FineReader Engine functions](/fine-reader/engine/api-reference/return-codes).

## See also

[Paragraph](/fine-reader/engine/api-reference/text-related-objects/paragraph)

[Hyperlink](/fine-reader/engine/api-reference/text-related-objects/hyperlink)

[Working with Properties](/fine-reader/engine/guided-tour/advanced-techniques/programming-aspects/working-with-properties)
