> ## 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.

# GetCharParams Method of the WordRecognitionVariant Object

This method provides access to parameters of a single character in the word. A character is indexed with its position inside the word. This index must be in the range from 0 to the length of the word.

## Syntax

### C++

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

### C\#

```csharp theme={null}
void GetCharParams(
   int        Position,
   ICharParams Result
);
```

### Visual Basic .NET

```vb theme={null}
Sub GetCharParams( _
   Position As Integer, _
   Result As ICharParams _
)
```

## Parameters

Position

\[in] Specifies the index of the character inside the word.

Result

\[in] Refers to a [CharParams](/fine-reader/engine/api-reference/text-related-objects/charparams) object. This object's properties are initialized with values corresponding to parameters of the character. A valid object should be passed as this parameter.

## 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

[WordRecognitionVariant](/fine-reader/engine/api-reference/text-related-objects/wordrecognitionvariant)

[CharParams](/fine-reader/engine/api-reference/text-related-objects/charparams)

[Using Voting API](/fine-reader/engine/guided-tour/advanced-techniques/using-voting-api)
