Code: Select all
Enumeration enumColors
#ColRed
#ColGreen
#ColBlue
EndEnumeration
Procedure Test (Color.enumColor)
Debug Color
EndProcedure
edit for better understanding:
so when i'm writing a call to the procedure Test from the above example and come to the parameters, the autocomplete will show me the three items (#ColRed, #ColGreen, #ColBlue) from the named enum.