activities
latest
false
- Overview
- Document Processing Contracts
- Release notes
- About the Document Processing Contracts
- Box Class
- IPersistedActivity interface
- PrettyBoxConverter Class
- IClassifierActivity Interface
- IClassifierCapabilitiesProvider Interface
- ClassifierDocumentType Class
- ClassifierResult Class
- ClassifierCodeActivity Class
- ClassifierNativeActivity Class
- ClassifierAsyncCodeActivity Class
- ClassifierDocumentTypeCapability Class
- ExtractorAsyncCodeActivity Class
- ExtractorCodeActivity Class
- ExtractorDocumentType Class
- ExtractorDocumentTypeCapabilities Class
- ExtractorFieldCapability Class
- ExtractorNativeActivity Class
- ExtractorResult Class
- ICapabilitiesProvider Interface
- IExtractorActivity Interface
- ExtractorPayload Class
- DocumentActionPriority Enum
- DocumentActionData Class
- DocumentActionStatus Enum
- DocumentActionType Enum
- DocumentClassificationActionData Class
- DocumentValidationActionData Class
- UserData Class
- Document Class
- DocumentSplittingResult Class
- DomExtensions Class
- Page Class
- PageSection Class
- Polygon Class
- PolygonConverter Class
- Metadata Class
- WordGroup Class
- Word Class
- ProcessingSource Enum
- ResultsTableCell Class
- ResultsTableValue Class
- ResultsTableColumnInfo Class
- ResultsTable Class
- Rotation Enum
- SectionType Enum
- WordGroupType Enum
- IDocumentTextProjection Interface
- ClassificationResult Class
- ExtractionResult Class
- ResultsDocument Class
- ResultsDocumentBounds Class
- ResultsDataPoint Class
- ResultsValue Class
- ResultsContentReference Class
- ResultsValueTokens Class
- ResultsDerivedField Class
- ResultsDataSource Enum
- ResultConstants Class
- SimpleFieldValue Class
- TableFieldValue Class
- DocumentGroup Class
- DocumentTaxonomy Class
- DocumentType Class
- Field Class
- FieldType Enum
- LanguageInfo Class
- MetadataEntry Class
- TextType Enum
- TypeField Class
- ITrackingActivity Interface
- ITrainableActivity Interface
- ITrainableClassifierActivity Interface
- ITrainableExtractorActivity Interface
- TrainableClassifierAsyncCodeActivity Class
- TrainableClassifierCodeActivity Class
- TrainableClassifierNativeActivity Class
- TrainableExtractorAsyncCodeActivity Class
- TrainableExtractorCodeActivity Class
- TrainableExtractorNativeActivity Class
- Document Understanding Digitizer
- Document Understanding ML
- Document Understanding OCR Local Server
- Document Understanding
- Release notes
- About the Document Understanding activity package
- Project compatibility
- Set PDF Password
- Merge PDFs
- Get PDF Page Count
- Extract PDF Text
- Extract PDF Images
- Extract PDF Page Range
- Extract Document Data
- Create Validation Task and Wait
- Wait for Validation Task and Resume
- Create Validation Task
- Classify Document
- Create Classification Validation Task
- Create Classification Validation Task and Wait
- Wait for Classification Validation Task and Resume
- Intelligent OCR
- Release notes
- About the IntelligentOCR activity package
- Project compatibility
- Configuring Authentication
- Load Taxonomy
- Digitize Document
- Classify Document Scope
- Keyword Based Classifier
- Document Understanding Project Classifier
- Intelligent Keyword Classifier
- Create Document Classification Action
- Wait For Document Classification Action And Resume
- Train Classifiers Scope
- Keyword Based Classifier Trainer
- Intelligent Keyword Classifier Trainer
- Data Extraction Scope
- Document Understanding Project Extractor
- RegEx Based Extractor
- Form Extractor
- Intelligent Form Extractor
- Present Validation Station
- Create Document Validation Action
- Wait For Document Validation Action And Resume
- Train Extractors Scope
- Export Extraction Results
- ML Services
- OCR
- OCR Contracts
- Release notes
- About the OCR Contracts
- Project compatibility
- IOCRActivity Interface
- OCRAsyncCodeActivity Class
- OCRCodeActivity Class
- OCRNativeActivity Class
- Character Class
- OCRResult Class
- Word Class
- FontStyles Enum
- OCRRotation Enum
- OCRCapabilities Class
- OCRScrapeBase Class
- OCRScrapeFactory Class
- ScrapeControlBase Class
- ScrapeEngineUsages Enum
- ScrapeEngineBase
- ScrapeEngineFactory Class
- ScrapeEngineProvider Class
- OmniPage
- PDF
- [Unlisted] Abbyy
- [Unlisted] Abbyy Embedded
ResultsTable Class
Document Understanding Activities
Last updated Nov 21, 2024
ResultsTable Class
The
ResultsTable
class represents the extracted table
field.
- Namespace:
UiPath.DocumentProcessing.Contracts.Results
- Assembly:
UiPath.DocumentProcessing.Contracts
The
ResultsTable
class represents the extracted table field. It has one or
multiple ResultsTableValues
(to support single and multi-value
tables, respectively) and each value has an array of
ResultsTableCells
. Each cell has an array of
ResultsValue
which is the standard value object used for simple
fields.
Constructors
ResultsTable
(<string>, <string>
) - Creates a missing automatically extractedUiPath.DocumentProcessing.Contracts.Results.ResultsTable
. SetsUiPath.DocumentProcessing.Contracts.Results.ResultsTable.DataSource
toAutomatic
andUiPath.DocumentProcessing.Contracts.Results.ResultsTable.DataVersion
to 0.ResultsTable
(<string>, <string>, UiPath.DocumentProcessing.Contracts.Results.ResultsDataSource, UiPath.DocumentProcessing.Contracts.Results.ResultsTableValue[], <int>, <bool>
)` - Creates aUiPath.DocumentProcessing.Contracts.Results.ResultsTable
using the provided arguments.ResultsTable
(<string>, <string>, UiPath.DocumentProcessing.Contracts.Results.ResultsTableValue
) - Creates an automatically extractedUiPath.DocumentProcessing.Contracts.Results.ResultsTable
with a single value. SetsUiPath.DocumentProcessing.Contracts.Results.ResultsTable.DataSource
toAutomatic
,UiPath.DocumentProcessing.Contracts.Results.ResultsTable.DataVersion
to 0.ResultsTable
(<string>, <string>, UiPath.DocumentProcessing.Contracts.Results.ResultsTableValue[]
) - Creates an automatically extractedUiPath.DocumentProcessing.Contracts.Results.ResultsTable
. SetsUiPath.DocumentProcessing.Contracts.Results.ResultsTable.DataSource
toAutomatic
,UiPath.DocumentProcessing.Contracts.Results.ResultsTable.DataVersion
to 0.
Methods
ConvertFromDataPointTableFormat
(UiPath.DocumentProcessing.Contracts.Results.ResultsDataPoint
) - Converts an instance of the old table representation (which used data points) to the new table structure.ConvertToDataPointTableFormat()
- Converts an instance of the new table structure to the old representation using data points.GetValue()
- Returns the first table value or null if the table is missing.GetValue
(<int>
) - Returns the table value at the specified index or null if the table is missing.SetValue
(UiPath.DocumentProcessing.Contracts.Results.ResultsTableValue
) - Overwrites the current value(s) with the single specified value.
Properties
DataSource
<string>
- Source of field extracted value.DataVersion
<int>
- The number of changes done to the table. The version of an automatically extracted table is 0, and is incremented for each subsequent manual modification.FieldId
<string>
- Table field ID from the taxonomy.FieldName
<string>
- Table field name from the taxonomy.IsMissing
<bool>
- Flag specifying if the table has any extracted values or not.OperatorConfirmed
<bool>
- Flag indicating if the table was confirmed by a reviewer.Values
<string>
- Values extracted for the current table.