Enumeration - definition

Enumeration variables are variables declared with an Enum type. Both variables and parameters can be declared with an Enum type. The elements of the Enum type are initialized to constant values within the Enum statement. The assigned values can't be modified at runtime and can include both positive and negative numbers.

Note: In the design mode, only mapped strings are exposed to users.