概要
フィールド
| Name | Type | Description |
|---|---|---|
Id | int | バッチの ID。 |
Name | string | バッチの名前。 |
BatchTypeId | int | バッチタイプの ID。0 は Default バッチタイプを示します。 |
Priority | int | バッチの優先度。指定可能な値については、ProcessingPriority を参照してください。 |
Description | string | バッチの説明。 |
Properties | RegistrationProperty[] | バッチの登録パラメーターのセット。 |
PropertiesCount | int | 登録パラメーターの数。 |
StageExternalId | int | タスクが作成される処理ステージの ID。 |
CreationDate | long | バッチが作成された日時を FILETIME 値で表します。値の変換には、このテーブルの後にある変換例を使用してください。 |
DocumentsCount | int | バッチ内の文書数。 |
RecognizedDocumentsCount | int | 認識済み文書の数。 |
AssembledDocumentsCount | int | 組み立て済み文書の数。 |
VerifiedDocumentsCount | int | 検証済み文書の数。 |
ExportedDocumentsCount | int | エクスポート済み文書の数。 |
PagesCount | int | バッチ内のページ数。 |
RecognizedSymbolsCount | int | 認識された文字数。 |
UncertainSymbolsCount | int | 不確実な文字の数。 |
VerificationSymbolsCount | int | 検証済み文字の数。 |
CreationDate を long と DateTime の間で変換する方法は次のとおりです。
DateTime dTime;
long lTime;
...
// long から DateTime への変換
dTime = DateTime.FromFileTime(lTime);
...
// DateTime から long への変換
lTime = dTime.ToFileTime();
