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

# IBatchTypeClassifierResult

> IBatchTypeClassifierResult は、ページに割り当てられた ClassName と各クラスの信頼度を含む、バッチタイプのページ分類結果を返します。

<div id="what-it-does">
  ## 機能
</div>

信頼度レベルを取得します。

<Note>
  ルールをローカルで確認する場合、Web Verification Station ではこのオブジェクトは使用できません。
</Note>

<div id="properties">
  ## プロパティ
</div>

| **名前**    | **型**  | **アクセス** | **説明**                |
| --------- | ------ | -------- | --------------------- |
| ClassName | string | 読み取り専用   | 分類結果としてページに付与されるクラス名。 |

<div id="show-class-confidences-for-a-page">
  ## ページのクラスごとの信頼度を表示する
</div>

このサンプルでは、ページを分類し、各候補クラスの信頼度を表示します。

```csharp theme={null}
IBatchTypeClassifierResult res = BatchTypeClassifier.ClassifyPage( Page );
IClassConfidences classVars = res.Classes;
foreach( IClassConfidence c in classVars )
{
    FCTools.ShowMessage( c.Name + " --> " + c.Confidence.ToString() );
}
```
