Enum Definition
The eValue
variable is an instance of type E_Value
, an enumeration that represents seasons. Here’s its definition:
TYPE E_Value :
(
_ := 0,
Summer,
Autumn,
Winter,
Spring
)UINT;
END_TYPE
The eValue
variable is an instance of type E_Value
, an enumeration that represents seasons. Here’s its definition:
TYPE E_Value :
(
_ := 0,
Summer,
Autumn,
Winter,
Spring
)UINT;
END_TYPE