  | DataType Enumeration | 
 
            Defines data types that can be detected in parsing text. 
            
 
    Namespace: 
   Opait.Api
    Assembly:
   Opait.Core (in Opait.Core.dll) Version: 1.3.3.0
Syntax
Members| 
									 
								 | Member name | Value | Description | 
|---|
 | String | 0 | 
            Allows letters, digits and some punctuations. This is the
            default type when a more specific type cannot be assigned.
             | 
 | Numeric | 1 | 
            A numeric value consisting of digits,
            hyphens and periods.
             | 
 | Currency | 2 | 
            A decimal amounts in a valid currency format,
            depending on supported locales.
             | 
 | Date | 3 | 
            Represents a date or a combination of a date and a time.
             | 
 | Alphanumeric | 4 | 
            Represents an alpha-numeric value consisting of 
            letters, digits, hyphens and periods.
             | 
 | Custom | 5 | 
            A user defined type that has a regular expression mask.
             | 
 | Computed | 6 | 
            A user defined type that is computed from other data elements.
             | 
 | Unknown | 7 | 
            The data type is unknown or to be determined later.
             | 
See Also