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

# BusinessCardField オブジェクトの GetCharParams メソッド

> ABBYY FineReader Engine API の BusinessCardField オブジェクトの GetCharParams メソッド — 位置を指定して、field 内の1文字に対応する CharParams を返します。

このメソッドでは、field 内の1文字のパラメーターにアクセスできます。文字は、field のテキスト内での位置を示す index で指定します。

<div id="syntax">
  ## 構文
</div>

<div id="c">
  ### C++
</div>

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

### C\#

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

<div id="visual-basic-net">
  ### Visual Basic .NET
</div>

```vb theme={null}
Function GetCharParams(Position As Integer) As ICharParams
```

<div id="parameters">
  ## パラメーター
</div>

Position

\[in] field 内の文字のインデックスを指定します。このインデックスは、0 から field の値の長さまでの範囲内でなければなりません。

Result

\[out, retval] 出力 [CharParams](/ja/fine-reader/engine/api-reference/text-related-objects/charparams) オブジェクト のインターフェイス ポインターを受け取る、ICharParams\* ポインター変数へのポインターです。

<div id="return-values">
  ## 戻り値
</div>

この関数に固有の戻り値はありません。戻り値として、[ABBYY FineReader Engine 関数の標準の戻り値](/ja/fine-reader/engine/api-reference/return-codes)が返されます。

<div id="see-also">
  ## 関連項目
</div>

[BusinessCardField](/ja/fine-reader/engine/api-reference/document-related-objects/businesscardfield)

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