company logo

EnumStringTypes - Enumerator string types

Enumeration values can be provided as enumeration code (number) and string value (name). In order to support different names for enumerations and several languages, one may change the string type currently returned for an enumeration by calling Value::enumString().

Enumarators overview

Enumerator details

  1. EnumName - Enumerator name

    The enumerator name is the language independent name as being used in programming code, which is returned as default string value.

    Code: 0
    to list
  2. EnumLabel - Enumerator label

    Enumerator labels are short texts used to identify enumerator categories more user oriented and in different languages.

    Code: 2
    to list
  3. EnumTitle - Enumerator title

    The enumerator title is a language depending long text.

    Code: 3
    to list
  4. EnumType - Enumerator type

    The string contains the type associated with a category (enumerator).

    Code: 5
    to list
  5. EnumCondition - Enumerator condition

    The string contains the condition defined for the category (enumerator).

    Code: 6
    to list