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
ResultsDerivedField Class
Document Understanding Activities
Last updated Oct 29, 2024
ResultsDerivedField Class
- Namespace:
UiPath.DocumentProcessing.Contracts.Results
- Assembly:
UiPath.DocumentProcessing.Contracts
A public class that represents a formatted value within a reported value. It defines a key-value pair that encapsulates the formatting information for different types of values.
A field of the
Date
type in the DocumentTaxonomy
file can have
the following derived parts: 'Day', 'Month', 'Year'.
A field of the
Number
type in the DocumentTaxonomy
file can
have the following derived part: 'Value'.
A field of the
Name
type in the DocumentTaxonomy
file can have
the following derived parts: 'Given Name', 'Middle Name', 'Last Name'.
A field of the
Address
type in the DocumentTaxonomy
file can
have the following derived parts: 'Address Line 1', 'Address Line 2', 'Address Line
3', 'City', 'State / County / Province', 'Country', 'Zip Postal Code'.
Constructors
CreateDerivedFieldsForAddress
(string
line1
,string
line2
,string
line3
,string
city
,string
stateCountyProvince
,string
country
,string
zipCode
) - Returns a list ofResultsDerivedField
objects that fill in the derived parts for an AddressResultsValue
. The output of this method can be assigned directly to aResultsValue
'sDerivedFields
property.CreateDerivedFieldsForDate
(int
day
,int
month
,int
year
) - Returns a list ofResultsDerivedField
objects that fill in the derived parts for an DateResultsValue
. The output of this method can be assigned directly to aResultsValue
'sDerivedFields
property.CreateDerivedFieldsForName
(string
givenName
,string
middleName
,string
lastName
) - Returns a list ofResultsDerivedField
objects that fill in the derived parts for an NameResultsValue
. The output of this method can be assigned directly to aResultsValue
'sDerivedFields
property.CreateDerivedFieldsForNumber
(float
value
) - Returns a list ofResultsDerivedField
objects that fill in the derived parts for an NumberResultsValue
. The output of this method can be assigned directly to aResultsValue
'sDerivedFields
property.