DictionaryTypeEnum
DictionaryTypeEnum enumeration constants are used to denote different types of dictionaries.
typedef enum {
DT_SystemDictionary,
DT_UserDictionary,
DT_RegularExpression,
DT_ExternalDictionary
} DictionaryTypeEnum;
Elements
Name | Description |
---|---|
DT_ExternalDictionary | The external dictionary. The ExternalDictionaryDescription provides access to the external dictionary description. |
DT_RegularExpression | The regular expression-based dictionary. The RegExpDictionaryDescription provides access to the regular expression-based dictionary description. |
DT_SystemDictionary | The standard dictionary. The StandardDictionaryDescription provides access to the standard dictionary description. |
DT_UserDictionary | The user-defined dictionary. The UserDictionaryDescription provides access to the user-defined dictionary description. |
Used in
7/3/2024 8:50:25 AM