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

# BatchProcessor オブジェクトの ProcessPageAsync メソッド

> ABBYY FineReader Engine API の BatchProcessor オブジェクトの ProcessPageAsync メソッド — このメソッドを使用すると、別のパラメーターを指定してページを再処理できます。

<Note>
  このメソッドは、Linux 版および Windows 版の FRE で実装されています。
</Note>

このメソッドを使用すると、別のパラメーターを指定してページを再処理できます。

ページは処理キューの先頭または末尾に追加できます。ページをキューの先頭に追加した場合、そのページの処理が完了するまで、すでに処理済みの他のページはユーザーに返されません。

<Note>
  同じページを繰り返しキューに追加しないでください。
</Note>

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

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

```cpp theme={null}
HRESULT ProcessPageAsync(
  IFRPage*               Page,
  IPageProcessingParams* Params,
  QueuePushingModeEnum   Mode
);
```

### C\#

```csharp theme={null}
void ProcessPageAsync(
  IFRPage               Page,
  PageProcessingParams Params,
  QueuePushingModeEnum Mode
);
```

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

```vb theme={null}
Function ProcessPageAsync( _
  Page As IFRPage, _
  Params As PageProcessingParams, _
  Mode As QueuePushingModeEnum _
)
```

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

Page

\[in] 再認識するページを指定します。この変数は [FRPage](/ja/fine-reader/engine/api-reference/document-related-objects/frpage) オブジェクトを指します。

Params

\[in] 解析、認識、およびページ合成のパラメーターを格納する [PageProcessingParams](/ja/fine-reader/engine/api-reference/parameter-objects/preprocessing-analysis-recognition-and-synthesis-parameters/pageprocessingparams) オブジェクトを指します。

Mode

\[in] ページをキューの先頭に追加するか、末尾に追加するかを指定します。[QueuePushingModeEnum](/ja/fine-reader/engine/api-reference/enumerations/queuepushingmodeenum) の定数の説明を参照してください。

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

このメソッドには固有の戻り値はありません。[ABBYY FineReader Engine 関数の標準的な戻り値](/ja/fine-reader/engine/api-reference/return-codes)を返します。

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

[BatchProcessor](/ja/fine-reader/engine/api-reference/batch-processor/batchprocessor)
