⇘
范围操作:标准 IEC 61131-3 的扩展。
一个
⇘
枚举类型名可以用于消除枚举变量访问的歧义。所以可以在不同的枚举变量中使用相同的常量。
枚举类型必须位于常量名之前,并通过 '.' 隔开。
语法:
<枚举名称>.<常量名>"
命令:
常量Blue是一个枚举变量Colors的组件同时也是枚举变量 Feelings。
color := Colors.Blue; // Access to enum value Blue in type Colors
feeling := Feelings.Blue; // Access to enum value Blue in type Feelings