No... #dBlack will be 1 not zero
Not sure what you're trying to accomplish??
If you set #ErrCheck_Color = 1 your first Enumeration will START at 1 (#dBlack will = 1)
The default STARTING POINT is zero, and STEP is = 1
so no parameter is required.
Enumeration
#dBlack ;= 0
#dBlue ;= 1
#dGreen ;= 2
#dCyan ;= 3
#dRed ;= 4
#dMagenta ;= 5
#dBrown ;= 6
#dWhite ;= 7
#lGray ;= 8
#lBlue ;= 9
#lGreen ;= 10
#lCyan ;= 11
#lRed ;= 12
#lMagenta ;= 13
#lYellow ;= 14
#lWhite ;= 15
EndEnumeration
You seem to want to name this "structure", but that's only if you want to "add" to it at a later time...
This is all explained in the Help file.
e.g.
Enumeration 3 STEP 2
#dBlack ;= 3
#dBlue ;= 5
#dGreen ;= 7
etc, etc
EndEnumeration
Debug #dBlack
Debug #dBlue
----------------------------------------------
PS - I'd update to 5.31, there's been a ton of improvements in 3 1/2 years.
Your version is from 7th November 2011
Updates are free FOREVER... why wouldn't you?