DatatypeCategoryEnum
DatatypeCategoryEnum enumeration constants describe different categories of data that may be recognized using a recognition language.
typedef enum {
TC_NotSpecified,
TC_Number,
TC_DateTime,
TC_Currency,
TC_HumanProperName,
TC_Address,
TC_WellKnownCode
} DatatypeCategoryEnum;
Elements
Name | Description |
---|---|
TC_NotSpecified | Text of any type not described below. |
TC_Number | Numerical value. |
TC_DateTime | Date, time, or their components. |
TC_Currency | Amount of money (e.g. a number with a currency code). |
TC_HumanProperName | Name, surname, patronymic, or any other part of a human name, and their combinations. |
TC_Address | Address. It may contain the name of the country, region, city, zip code, etc. |
TC_WellKnownCode | Well known code, e.g. ISBN, passport number, social security number, bank investment contract, etc. |
Used in
3/24/2023 8:48:38 AM