- ABBYY FlexiCaptureの導入
- ABBYY FlexiCaptureアーキテクチャ
-
ABBYY FlexiCapture でのスクリプトの使用
- .Net 言語で書かれるスクリプトの仕様
- 外部アセンブリ
- スクリプトエディタ
- オブジェクトモデル
-
処理ステージのカスタマイズのためのスクリプト
- スクリプトの種類
-
オブジェクト
- IActionResult
- IAssemblingError
- IAssemblingErrors
- IBatch
- IBatchCheckResults
- IBatchItem
- IBatchItems
- IBatchTypeClassifier
- IBatchTypeClassifierResult
- IBinarizationParams
- IBoxedBoolean
- ICharacterParams
- ICharactersParams
- ICheckmarkGroupValue
- ICheckmarkValue
- IDataSet
- IDataSetQuery
- IDataSetRecord
- IDocument
- IDocuments
- IDocumentExportResults
- IDocumentsExportResults
- IDocumentDefinitionInfo
- IDocumentDefinitionInfoArray
- IEditablePictureObject
- IExportFieldsToRedact
- IExportImageSavingOptions
- IField
- IFieldRegion
- IFieldRegions
- IFields
- IFlexiCaptureTools
- ILocalContrastParams
- IMatchedSectionInfo
- IMatchingInfo
- IPage
- IPageClassificationResult
- IPages
- IPictureObject
- IPictureObjectsInfo
- IPrincipal
- IPrincipals
- IProcessingCallback
- IProject
- IProperties
- IProperty
- IPropertyModificationInfo
- IRecordCheckResult
- IRecordset
- IRect
- IRects
- IRoutingRuleResult
- IRuleContext
- IRuleError
- IRuleErrors
- IRuleTag
- IRuleTags
- IScriptBinaryAttributes
- IScriptDefinitionContext
- ISectionDefinitionInfo
- ISectionDefinitionInfoArray
- IShadowsHighlightsParams
- IStageInfo
- IUserAttachment
- IUserAttachments
- IUserSessionInfo
- IValue
- IVARIANTArray
- TAssemlingErrorType
- TBatchItemType
- TColorToFilter
- TExportFieldType
- TExportType
- TImageCompressionType
- TPageClassificationType
- TPdfAVersion
- TPdfDocumentInfoType
- TPdfTextSearchAreaType
- TPrincipalType
- TProcessingPriority
- TPropertyType
- TRuleErrorType
- TStateType
- サンプルスクリプト
- 認識言語の内部名
-
インターフェイスイベントの処理スクリプト
- イベントハンドラ
-
オブジェクト
- IBoolean
- IBoxedFieldControl
- IDocumentEditor
- IDocumentItem
- IDocumentItems
- IDocumentsCollection
- IDocumentsWindow
- IDrawContext
- IErrorControl
- IErrorControls
- IErrorsWindow
- IFieldControl
- IFieldRegionControl
- IFieldRegionControls
- IFormWindow
- IImageWindow
- IMainMenu
- IMainWindow
- IMenu
- IMenuItem
- IPageControl
- IPageItem
- IPageItems
- IPagesCollection
- IPoint
- ISelection
- IShellRational
- IShellRect
- IShellRects
- ITaskWindow
- ITextEditor
- IToolbar
- IToolbarButton
- IToolbars
- TCommandBarType
- TCommandID
- TDockingType
- TDocumentState
- TErrorType
- TSelectionType
- TTaskWindowMode
- TTextSize
- TUserRole
- TWorkWindowType
- ウェブ検証ステーションのユーザースクリプト
-
アプリケーションプログラミングインターフェース (API)
- ABBYY FlexiCapture アプリケーションサーバーウェブサービス API について
- ABBYY FlexiCapture アプリケーションサーバーのウェブサービス API の使用
-
参照
- API メソッド
- データタイプ
- ファイルでの作業
- ウェブサービス・モバイルAPI
- ユーザアカウント管理のウェブサービス
- API の使用例
- 検証ステーションをサードパーティシステムへ統合
- 補助設定の構成とウェブステーションのカスタマイズ
- カスタムレポート
- 付録
Japanese (日本語) - Change language
Task
操作
Taskデータ型はタスクに関する情報を格納します。
注:この型の記録以外に、タスクに関する情報もXMLファイルに格納されます。XMLファイルは、タスク全体またはその個別のファイルを記述することがあります。ファイルのデータ構造とファイルの操作については、ファイルの操作セクションをご覧ください。
フィールド
名前 | 型 | 記述 |
Id | int | タスクのID |
projectId | int | タスクが属するプロジェクトのID |
batchId | int | タスクの文書を含むバッチのID |
BatchTypeId | int | バッチ型のID。0 は「デフォルト」バッチ型に対応します |
Priority | int | タスクの優先度。可能な値:優先度をご覧ください。 |
Status | System.UInt32 |
タスクステータス。可能な値:
|
CreationTime | long |
作成時間。値を変換するには、以下の方法を使用します (C#): DateTime dtTime; long lTime; ... // DateTimeからlongへの変換 dTime = DateTime.FromFileTime(lTime); ... //longからDateTimeへの変換 lTime = dTime.ToFileTime(); |
ModificationTime | long |
タスクが最後に変更された時刻。変換するには、以下の方法を使用します (C#): DateTime dtTime; long lTime; ... // DateTimeからlongへの変換 dTime = DateTime.FromFileTime(lTime); ... //longからDateTimeへの変換 lTime = dTime.ToFileTime(); |
Comment | string | タスクへのコメント |
StageType | int | タスクが形成された処理段階の型。可能な値については、ProcessingStageTypeをご覧ください。 |
UserId | int | タスクが割り当てられているユーザーまたはグループの識別子。 |
Flags | int |
タスクのステータスを記述するフラグのセット。フィールドの値はフラグの値の組み合わせで、以下を含みます:
|
CreatorId | int | タスクを作成したユーザーのID。 |
batchName | string | タスクが関連付けられているバッチの名前 |
StageExternalId | int | タスクが作成された処理ステージのID |
2/20/2021 12:32:42 PM