Hi,
i noticed that some enums have UseEnumValues property set to yes/
1. what does this property do?
2. How can i enable this property when creating a new base enum? i can't find a way to enable it.
3. let's say i have this Enum called Enum1 (where the property is set to false) and it has these three items: start,Middle,Finish
if this enum was used in AOT query and i wanted to do a range where status is less than finish
do i put in the range: <2 assuming start value is 0, middle is 1 and finish is 2 and is the syntax correct?
4. let's say i have this Enum called Enum3 (where the property is set to true) and it has these 4 items: start,Middle,Finish,Done
starts has enumvalue 3, Middle has Enum value 7 , Finish has enum value 10 and Done has enum value 20
if this enum was used in AOT query and i wanted to do a range where status is less than finish
do i put in the range: <10 ?