Click or drag to resize

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
C#
public enum DataType
Members
  Member nameValueDescription
String0 Allows letters, digits and some punctuations. This is the default type when a more specific type cannot be assigned.
Numeric1 Token represents a numeric value consisting of digits, hyphens and periods.
Currency2 Represents a decimal amounts in a valid currency format, depending on supported locales.
Date3 Represents a date or a combination of a date and a time.
Alphanumeric4 Token represents an alpha-numeric value consisting of letters, digits, hyphens and periods.
Custom5 A user defined type that has a regular expression mask.
Computed6 A user defined type that is computed from other data elements.
Unknown7 The data type is unknown or to be determined later.
See Also